vis
a vi-like editor based on Plan 9's structural regular expressions
git clone https://9o.is/git/vis.git
commit 9f4052a7b50c105b5512622d4530cdbd82fbdd19 parent 49ecedfb71d5625d96abafd5d30ef6ad0d011c78 Author: orbitalquark <70453897+orbitalquark@users.noreply.github.com> Date: Sun, 15 Sep 2024 20:56:36 -0400 Add 'org' directive to asm lexer Diffstat:
| M | lua/lexers/asm.lua | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lua/lexers/asm.lua b/lua/lexers/asm.lua @@ -66,8 +66,8 @@ lex:set_word_list(lexer.KEYWORD, { 'altreg', 'smartalign', 'fp', 'ifunc', -- Directives. 'absolute', 'bits', 'class', 'common', 'common', 'cpu', 'default', 'export', 'extern', 'float', - 'global', 'group', 'import', 'osabi', 'overlay', 'private', 'public', '__SECT__', 'section', - 'segment', 'stack', 'use16', 'use32', 'use64', + 'global', 'group', 'import', 'org', 'osabi', 'overlay', 'private', 'public', '__SECT__', + 'section', 'segment', 'stack', 'use16', 'use32', 'use64', -- Section Names. '.bss', '.comment', '.data', '.lbss', '.ldata', '.lrodata', '.rdata', '.rodata', '.tbss', '.tdata', '.text',