ฉันได้กำหนดเวลาไฟล์jak.vim
เพื่อเสนอการเน้นที่กำหนดเองเมื่อฉันจดบันทึกอย่างไรก็ตามมันจะถูกนำไปใช้กับไฟล์บางไฟล์ที่ไม่มี.jak
นามสกุล ไฟล์ชื่อprogress.jlog
โดยเฉพาะ เพียงเพื่อทดสอบว่าเป็นปัญหาที่เฉพาะเจาะจงเพื่อขยายว่าผมเปลี่ยนprogress.jlog
ไปprogress
(นามสกุลไม่ได้) แต่ประสบปัญหาเดียวกัน
ฉันทำอะไรลงไป:
- ฉันสร้าง
jak.vim
ในไดเรกทอรี~/.vim/ftdetect
- ฉันเพิ่มบรรทัดนี้: "au BufRead, BufNewFile * .jak set filetype = jak" ไปด้านบนตามที่อธิบายไว้ในการอ้างอิงเสียงเรียกเข้า
- ฉันเริ่มใหม่เป็นกลุ่ม (: x แล้วเปิดใหม่)
นี่คือ~/.vim/ftdetect/jak.vim
หน้าตาของฉัน:
~/.vim/ftdetect][505]% cat jak.vim
au BufRead, BufNewFile *.jak set filetype=jak
syn region JakeSubtitle start=+==+ end=+==+
highlight JakeSubtitle ctermbg=black ctermfg=DarkMagenta
syn region JakeTitle start=+===+ end=+===+
highlight JakeTitle ctermbg=black ctermfg=yellow
syn region JakeMasterTitle start=+====+ end=+====+
highlight JakeMasterTitle cterm=bold term=bold ctermbg=black ctermfg=LightBlue
syn region emphasis start=+<em>+ end=+</em>+
highlight emphasis ctermbg=black ctermfg=yellow
" makes all of the numbered items bold."
" (this works I just don't like the effect. Decided to change to just highlight the "number)
"syn region numberedItem start=+^\t*\d*)+ end=+\n+"
syn match numberedItem +^\t*\d*)+
highlight numberedItem cterm=bold
และในกรณีที่คุณต้องรู้ว่านี่คือสิ่งที่ฉัน.vimrc
มอง:
~/.vim/ftdetect][508]% cat ../../.vimrc
"on will override defaults set. Enable will allow you to set defaults."
" also turns on filetype"
"syntax on"
syntax enable
set nocompatible
" ???"
set backspace=2
"Auto indent"
set ai
"Map jj to Esc so that you do not have to reach for the Esc button"
imap jj <Esc>
"do not allow the search to wrap around the screen, must stop at the bottom."
set nowrapscan
"when doing a search highlight all occurances"
":set hlsearch"
"stop text from wrapping on the screen"
set nowrap
"turn the mouse on while in insert mode"
set mouse=i
"attempting to highlight specific keywords so it is easy to see in code."
"see help e410 for more info."
"see this post I created: /superuser/110054/custom-vim-highlighting"
"Legal colors: Black, DarkBlue, DarkGreen, DarkCyan, DarkRed, DarkMagenta,"
"Brown, DarkYellow, LightGray, LightGrey, Gray, Grey, DarkGray, DarkGrey,"
"Blue, LightBlue, Green, LightGreen, Cyan, LightCyan, Red, LightRed, Magenta,"
"LightMagenta, Yellow, LightYellow, White"
syn keyword JakeKeywords Question TODO Answer JAKEHTTPS PossibleProblem
highlight JakeKeywords cterm=bold term=bold ctermbg=black ctermfg=Blue
"for case-insensitve searches"
set ignorecase
"Override the 'ignorecase' option if the search pattern contains upper"
"case characters. Only used when the search pattern is typed and"
"'ignorecase' option is on."
set smartcase
"use indents as the folding method"
set foldmethod=indent
"make vim save and load the folding of the document each time it loads"
"also places the cursor in the last place that it was left."
au BufWinLeave * mkview
au BufWinEnter * silent loadview
หมายเหตุ: ฉันใส่เครื่องหมายคำพูด (ความคิดเห็น) ทั้งหมดเพื่อให้อ่านง่ายขึ้น
ปรับปรุง
ฉันพบโพสต์ของ nsharishเป็นประโยชน์อย่างมาก พวกเขาแนะนำให้ฉันเพิ่มสิ่งนี้ลงใน vimrc ของฉัน:
au BufRead,BufNewFile *.jak set filetype=jak
และเพิ่มjak.vim
ไฟล์ของฉันไปที่~/.vim/syntax
น่าเสียดายที่รหัสขัดแย้งกับสองบรรทัดนี้ (ใน vimrc ของฉัน)
au BufWinLeave *.c mkview
au BufWinEnter *.c silent loadview
ฉันใช้ทั้งสองนี้เพื่อบันทึกการพับตำแหน่งเคอร์เซอร์ของฉัน ฯลฯ เมื่อโหลดกลุ่ม (ดู:help lo
) หากฉันแสดงความคิดเห็นทั้งสองบรรทัดข้อเสนอแนะของ nsharish ทำงานเหมือนมีเสน่ห์ ด้วยสองบรรทัดนี้ไม่มีการเน้นในไฟล์ใด ๆ ของฉัน
ข้อสรุป
ฉันทำเครื่องหมายคำตอบของ nsharish เป็นคำตอบที่ดีที่สุด (เพราะเป็นประโยชน์กับฉันมากที่สุด) อย่างไรก็ตามนี่คือวิธีที่ฉันแก้ไขปัญหา:
Nsharish ถูกต้องฉันต้องการบรรทัดนี้ใน.vimrc
:
syntax enable
au BufRead,BufNewFile *.jak set filetype=jak
และฉันต้องการที่จะย้ายของฉันไฟล์ jak.vim
~/.vim/syntax
อย่างไรก็ตามตามที่ระบุไว้ข้างต้นมีข้อขัดแย้งกับบรรทัดเหล่านี้:
au BufWinLeave * mkview
au BufWinEnter * silent loadview
เมื่อบรรทัดเหล่านี้ถูกคอมเม้นท์การเน้นสีใช้งานได้
สิ่งที่ฉันต้องทำคือเปลี่ยนสิ่ง...set filetype...
นี้:
au BufWinEnter,BufRead,BufNewFile *.jak set filetype=jak
ฉันคิดว่า BufWinEnter ถูกเรียกหลังจากไฟล์ BufRead / BufNew ดังนั้นการไฮไลต์จะถูกเขียนทับโดยการจัดรูปแบบที่บันทึกไว้จากครั้งที่แล้ว
ขอขอบคุณอีกครั้งที่ nsharish ที่ช่วยฉันแก้ปัญหานี้