Releases: anki-code/xontrib-output-search
Releases · anki-code/xontrib-output-search
0.2.0
New parser algorithm creates more clearer tokens
0.1.8
json
tokenizer renamed to dict
and support python dict
0.1.7
Output search now works on any position of the command.
0.1.6
- Added previous command to tokenizer along with output:
$ VAR='/hello/from:/var'; echo ok
ok
$ <Alt+F>
VAR
/hello/from
/var
...
- Improved env-like tokenizer
0.1.5
JSON tokenizer now extract all keys and values:
$ echo '{"One": {"two":"three four", "six":7777}}'
{"One": {"two":"three four", "six":7777}}
$ <Alt+F>
One
two
three four
three
four
six
7777
0.1.3
Reimplementation of tokenizer and generator to make it extendable:
_tokenizer_simple_splitter
- split by white spaces
_generator_frame_stripping
- extract token from special characters
_generator_env
- generate tokens from env
-like output
0.1.2
Environment variables support:
$ env | grep ^PATH=
PATH=/one/two:/three/four
$ ls fo<Alt+F>
$ ls /three/four
0.1.0
- New hotkey: Alt + F
- New prefix:
f__
- New generator
- New readme
- New tests for tokenizer
0.0.2
XONSH_STORE_STDOUT
not used anymore. Now the output is stored only for last not empty command and in memory. It's more secure solution.
- Cleaning from colors