This commit is contained in:
Kartik Agaram 2019-02-23 13:29:35 -08:00
parent 87ea70754d
commit ed4e645306
1 changed files with 5 additions and 0 deletions

View File

@ -105,3 +105,8 @@ if exists("&splitvertical")
else
command! -nargs=0 P split opcodes
endif
" useful for inspecting just the control flow in a trace
" see https://github.com/akkartik/mu/blob/master/subx/Readme.md#a-few-hints-for-debugging
" the '-a' is because traces can sometimes contain unprintable characters that bother grep
command! -nargs=0 L exec "%!grep -a label"