You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -725,7 +725,7 @@
725
725
* Enhancements
726
726
* Added ability to include command name placeholders in the message printed when trying to run a disabled command.
727
727
* See docstring for ``disable_command()`` or ``disable_category()`` for more details.
728
-
* Added instance attributes to customize error messages without having to override methods. Theses messages can
728
+
* Added instance attributes to customize error messages without having to override methods. These messages can
729
729
also be colored.
730
730
* `help_error` - the error that prints when no help information can be found
731
731
* `default_error` - the error that prints when a non-existent command is run
@@ -862,7 +862,7 @@
862
862
* Aliases are now sorted alphabetically
863
863
* The **set** command now tab completes settable parameter names
864
864
* Added ``async_alert``, ``async_update_prompt``, and ``set_window_title`` functions
865
-
* These allow you to provide feedback to the user in an asychronous fashion, meaning alerts can
865
+
* These allow you to provide feedback to the user in an asynchronous fashion, meaning alerts can
866
866
display when the user is still entering text at the prompt. See [async_printing.py](https://github.com/python-cmd2/cmd2/blob/master/examples/async_printing.py)
867
867
for an example.
868
868
* Cross-platform colored output support
@@ -962,7 +962,7 @@
962
962
* New pyscript approach that provides a pythonic interface to commands in the cmd2 application.
963
963
* Switch command parsing from pyparsing to custom code which utilizes shlex.
964
964
* The object passed to do_* methods has changed. It no longer is the pyparsing object, it's a new Statement object, which is a subclass of ``str``. The statement object has many attributes which give you access to various components of the parsed input. If you were using anything but the string in your do_* methods, this change will require you to update your code.
965
-
*``commentGrammers`` is no longer supported or available. Comments are C-style or python style.
965
+
*``commentGrammars`` is no longer supported or available. Comments are C-style or python style.
966
966
* Input redirection no longer supported. Use the load command instead.
967
967
*``multilineCommand`` attribute is ``now multiline_command``
968
968
*``identchars`` is now ignored. The standardlibrary cmd uses those characters to split the first "word" of the input, but cmd2 hasn't used those for a while, and the new parsing logic parses on whitespace, which has the added benefit of full unicode support, unlike cmd or prior versions of cmd2.
0 commit comments