This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| printstring macro msg | |
| mov ah, 09h | |
| mov dx, offset msg | |
| int 21h | |
| endm | |
| readnum macro num | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| " full Python syntax highlighting | |
| let python_highlight_all=1 | |
| let g:pyflakes_use_quickfix=1 | |
| augroup PYTHON | |
| autocmd FileType python setlocal omnifunc=pythoncomplete#Complete | |
| " this one is which you're most likely to use? | |
| autocmd FileType python highlight ColorColumn ctermfg=12, ctermbg=9 | |
| autocmd FileType python call matchadd('ColorColumn', '\%80v', 100) | |
| " Display tabs at the beginning of a line in Python mode as bad |
NewerOlder