tree-sitter-muttrc 0.0.1 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CMakeLists.txt +13 -8
- package/Cargo.toml +1 -1
- package/{bindings/python/tree_sitter_muttrc/__init__.py → __init__.py.in} +3 -12
- package/grammar.js +9 -13
- package/package.json +1 -1
- package/pyproject.toml +2 -3
- package/src/grammar.json +143 -55
- package/src/node-types.json +1 -1
- package/src/parser.c +5891 -5514
- package/tests/neomuttrc +1 -3
package/tests/neomuttrc
CHANGED
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
bind pager,index \ch<BackSpace> sidebar-toggle-visible
|
|
2
2
|
set & allow_ansi ? allow_ansi noallow_ansi
|
|
3
|
-
set allow_ansi=yes
|
|
4
|
-
set sleep_time = 0
|
|
3
|
+
set allow_ansi=yes sleep_time = 0 ispell = aspell
|
|
5
4
|
set real_name = $DEBFULLNAME
|
|
6
|
-
set ispell = aspell
|
|
7
5
|
set query_command = 'mutt_ldap_query.pl %s'
|
|
8
6
|
set signature = "echo Best Regards$'\n'$DEBFULLNAME|"
|
|
9
7
|
set imap_pass = `pass ls password/$USER`
|