<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/cmd2-git.git/cmd2/argparse_completer.py, branch 0.9.1</title>
<subtitle>github.com: python-cmd2/cmd2.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/cmd2-git.git/'/>
<entry>
<title>Fixes problem with not passing the parameter hint suppression down to sub-commands</title>
<updated>2018-05-22T19:07:14+00:00</updated>
<author>
<name>Eric Lin</name>
<email>anselor@gmail.com</email>
</author>
<published>2018-05-22T19:07:14+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/cmd2-git.git/commit/?id=3d953628f1dbf7119001fa0751086b3b6016f764'/>
<id>3d953628f1dbf7119001fa0751086b3b6016f764</id>
<content type='text'>
Added hint suppression on a per-parameter basis
Added helper function to force an parameter to fall back to bash completion instead of using Cmd2 completion.
  - Hinting is still enabled by default but can be suppressed in the helper function.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Added hint suppression on a per-parameter basis
Added helper function to force an parameter to fall back to bash completion instead of using Cmd2 completion.
  - Hinting is still enabled by default but can be suppressed in the helper function.
</pre>
</div>
</content>
</entry>
<entry>
<title>Changed some unit tests to use pytest-mock instead of mocker/monkeypatch because they were failing for me.</title>
<updated>2018-05-19T19:54:08+00:00</updated>
<author>
<name>Eric Lin</name>
<email>anselor@gmail.com</email>
</author>
<published>2018-05-19T19:54:08+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/cmd2-git.git/commit/?id=1c1da0273faf3ab2316b4af9281cf15869b3da20'/>
<id>1c1da0273faf3ab2316b4af9281cf15869b3da20</id>
<content type='text'>
Added detection of ==SUPPRESS== in subcommand group names to avoid printing it in the help hint.
Added some examples to tab_autocompletion to demonstrate how to tie in to cmd2 path_complete
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Added detection of ==SUPPRESS== in subcommand group names to avoid printing it in the help hint.
Added some examples to tab_autocompletion to demonstrate how to tie in to cmd2 path_complete
</pre>
</div>
</content>
</entry>
<entry>
<title>Some fixes to autocompleter to make it easier to do delimited and file completion. Saving state - more to come.</title>
<updated>2018-05-18T22:53:44+00:00</updated>
<author>
<name>Eric Lin</name>
<email>anselor@gmail.com</email>
</author>
<published>2018-05-18T22:53:44+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/cmd2-git.git/commit/?id=6652557779faa0cdc4aac781e62f2b4f3b44b836'/>
<id>6652557779faa0cdc4aac781e62f2b4f3b44b836</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Figured out how to detect the second tab press. Writing parameter hinting to stderr to bypass bash completion handling.</title>
<updated>2018-05-03T21:00:01+00:00</updated>
<author>
<name>Eric Lin</name>
<email>anselor@gmail.com</email>
</author>
<published>2018-05-03T21:00:01+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/cmd2-git.git/commit/?id=94156f8a78b74588275141d27c0b633455fa4fc0'/>
<id>94156f8a78b74588275141d27c0b633455fa4fc0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Further customization of argparse applying patch submitted to https://bugs.python.org/issue15112</title>
<updated>2018-04-30T23:16:00+00:00</updated>
<author>
<name>Eric Lin</name>
<email>anselor@gmail.com</email>
</author>
<published>2018-04-30T23:16:00+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/cmd2-git.git/commit/?id=4a36b8c68d24707e85a1030759ec42b1a07421e1'/>
<id>4a36b8c68d24707e85a1030759ec42b1a07421e1</id>
<content type='text'>
Added additional tests - now at 100% coverage of pyscript_bridge.py
Still need handling of special action types: StoreTrue/False, store_const, count
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Added additional tests - now at 100% coverage of pyscript_bridge.py
Still need handling of special action types: StoreTrue/False, store_const, count
</pre>
</div>
</content>
</entry>
<entry>
<title>Initial approach to the pyscript revamp.</title>
<updated>2018-04-24T20:17:25+00:00</updated>
<author>
<name>Eric Lin</name>
<email>anselor@gmail.com</email>
</author>
<published>2018-04-24T20:17:25+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/cmd2-git.git/commit/?id=0a1c41ce7048b45fc7ef9b0176d988c26861224e'/>
<id>0a1c41ce7048b45fc7ef9b0176d988c26861224e</id>
<content type='text'>
Doesn't handle all argparse argument options yet (nargs, append, flag, probably more)
For #368
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Doesn't handle all argparse argument options yet (nargs, append, flag, probably more)
For #368
</pre>
</div>
</content>
</entry>
<entry>
<title>Updated constructor arguments</title>
<updated>2018-04-23T19:25:32+00:00</updated>
<author>
<name>Eric Lin</name>
<email>anselor@gmail.com</email>
</author>
<published>2018-04-23T19:25:32+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/cmd2-git.git/commit/?id=de58200c9292cb23c69c7de416a31fd7ff206470'/>
<id>de58200c9292cb23c69c7de416a31fd7ff206470</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Added support for using cmd2 application class methods as an argument completion provider. The default completion implementation in Cmd2 automatically passes self to AutoCompleter to be passed to the class method.</title>
<updated>2018-04-23T19:19:54+00:00</updated>
<author>
<name>Eric Lin</name>
<email>anselor@gmail.com</email>
</author>
<published>2018-04-23T19:19:54+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/cmd2-git.git/commit/?id=25d52d7301064278d4159dbb967ffd2f7d9fd21c'/>
<id>25d52d7301064278d4159dbb967ffd2f7d9fd21c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Addressed PR comments. Simplified some of the implementation per PR comments.</title>
<updated>2018-04-23T14:19:55+00:00</updated>
<author>
<name>Eric Lin</name>
<email>anselor@gmail.com</email>
</author>
<published>2018-04-23T14:19:55+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/cmd2-git.git/commit/?id=cbb94bff0cfed8c0ccbf8e0c2dd4c61f59881573'/>
<id>cbb94bff0cfed8c0ccbf8e0c2dd4c61f59881573</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Added some more comments for clarification.</title>
<updated>2018-04-22T03:11:07+00:00</updated>
<author>
<name>Eric Lin</name>
<email>anselor@gmail.com</email>
</author>
<published>2018-04-22T03:11:07+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/cmd2-git.git/commit/?id=102fc6741b5dfdbb02f28ee720214c70d1260cc0'/>
<id>102fc6741b5dfdbb02f28ee720214c70d1260cc0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
