<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/cmd2-git.git/cmd2/argparse_completer.py, branch 0.9.4</title>
<subtitle>github.com: python-cmd2/cmd2.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/cmd2-git.git/'/>
<entry>
<title>Updated argparse_completer to automatically set the matches_sorted flag for tabular results. Updated the example to demonstrate pre-sorted tabular results.</title>
<updated>2018-08-01T16:59:36+00:00</updated>
<author>
<name>Eric Lin</name>
<email>anselor@gmail.com</email>
</author>
<published>2018-08-01T16:59:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/cmd2-git.git/commit/?id=c79e56d4a3a41bd2d4b152a27c2334fd9d238fd4'/>
<id>c79e56d4a3a41bd2d4b152a27c2334fd9d238fd4</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 explanation of CompletionItem usage in code</title>
<updated>2018-06-13T15:15:01+00:00</updated>
<author>
<name>Eric Lin</name>
<email>anselor@gmail.com</email>
</author>
<published>2018-06-13T15:15:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/cmd2-git.git/commit/?id=f0c98ac10e60995bbf2dff9848931109cac2f96e'/>
<id>f0c98ac10e60995bbf2dff9848931109cac2f96e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Added a check to verify the existence of a descriptive header. Added a constant. Updated example to use the constant.</title>
<updated>2018-06-13T14:59:21+00:00</updated>
<author>
<name>Eric Lin</name>
<email>anselor@gmail.com</email>
</author>
<published>2018-06-13T14:59:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/cmd2-git.git/commit/?id=c897266b8e9a6bbce8aa577aa46e25ad1baa969d'/>
<id>c897266b8e9a6bbce8aa577aa46e25ad1baa969d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Added .mypy_cache to .gitignore</title>
<updated>2018-06-10T20:19:39+00:00</updated>
<author>
<name>Todd Leonhardt</name>
<email>todd.leonhardt@gmail.com</email>
</author>
<published>2018-06-10T20:19:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/cmd2-git.git/commit/?id=2565ae7832edfe42ee7631473f67a09b6789e679'/>
<id>2565ae7832edfe42ee7631473f67a09b6789e679</id>
<content type='text'>
Also:
- Added a few more type hints
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Also:
- Added a few more type hints
</pre>
</div>
</content>
</entry>
<entry>
<title>Update to use new completion_header when returning completions in tabular format with descriptions</title>
<updated>2018-06-07T04:22:38+00:00</updated>
<author>
<name>Eric Lin</name>
<email>anselor@gmail.com</email>
</author>
<published>2018-06-07T04:22:38+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/cmd2-git.git/commit/?id=dde5207c22d041b97981de47758317d15a3fc329'/>
<id>dde5207c22d041b97981de47758317d15a3fc329</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Adds possible support for tabular tab completion results.</title>
<updated>2018-06-06T21:53:44+00:00</updated>
<author>
<name>Eric Lin</name>
<email>anselor@gmail.com</email>
</author>
<published>2018-06-06T21:53:44+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/cmd2-git.git/commit/?id=13bb0655d1ceddcce1fb17aa069dcbf079b3bda8'/>
<id>13bb0655d1ceddcce1fb17aa069dcbf079b3bda8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<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://git.baserock.org/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://git.baserock.org/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://git.baserock.org/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://git.baserock.org/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>
</feed>
