Skip to content

Releases: anki-code/xontrib-output-search

0.2.0

25 Apr 13:32
Compare
Choose a tag to compare

New parser algorithm creates more clearer tokens

0.1.8

24 Apr 21:36
Compare
Choose a tag to compare

json tokenizer renamed to dict and support python dict

0.1.7

24 Apr 19:48
Compare
Choose a tag to compare

Output search now works on any position of the command.

0.1.6

24 Apr 18:35
Compare
Choose a tag to compare
  • 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

24 Apr 17:12
Compare
Choose a tag to compare

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

24 Apr 15:18
Compare
Choose a tag to compare

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

24 Apr 06:36
Compare
Choose a tag to compare

Environment variables support:

$ env | grep ^PATH=
PATH=/one/two:/three/four
$ ls fo<Alt+F>
$ ls /three/four

0.1.0

23 Apr 11:13
Compare
Choose a tag to compare
  • New hotkey: Alt + F
  • New prefix: f__
  • New generator
  • New readme
  • New tests for tokenizer

0.0.2

22 Apr 23:08
Compare
Choose a tag to compare
  • 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

0.0.1

22 Apr 22:03
Compare
Choose a tag to compare
0.0.1