Minor fix to vimium script
This commit is contained in:
parent
99afad720c
commit
fb892470cb
2 changed files with 77 additions and 78 deletions
|
@ -2,7 +2,6 @@
|
||||||
import json, argparse, os
|
import json, argparse, os
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
|
|
||||||
if __name__ == '__main__':
|
|
||||||
parser = argparse.ArgumentParser(
|
parser = argparse.ArgumentParser(
|
||||||
description="Convert vimium's json config file to markdown");
|
description="Convert vimium's json config file to markdown");
|
||||||
parser.add_argument('vimium_options', type=Path,
|
parser.add_argument('vimium_options', type=Path,
|
||||||
|
|
|
@ -22,7 +22,7 @@ set hidden
|
||||||
au BufWritePre [:;']* throw 'Forbidden file name: ' . expand('<afile>')
|
au BufWritePre [:;']* throw 'Forbidden file name: ' . expand('<afile>')
|
||||||
|
|
||||||
" Embedded code in markdown
|
" Embedded code in markdown
|
||||||
let g:markdown_fenced_languages = ['bash', 'rust', 'javascript', 'c', 'toml']
|
let g:markdown_fenced_languages = ['bash', 'rust', 'javascript', 'c', 'toml', 'css']
|
||||||
|
|
||||||
" ===================================================================
|
" ===================================================================
|
||||||
" Human-facing settings
|
" Human-facing settings
|
||||||
|
|
Loading…
Reference in a new issue