मैंने 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
नोट: मैंने सभी उद्धरणों (टिप्पणियों) को पूरा किया ताकि इसे पढ़ने में आसानी हो
अपडेट करें
मुझे nishharish की पोस्ट बहुत मददगार लगी । उन्होंने सुझाव दिया कि मैं इसे अपने 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 के उत्तर को सर्वश्रेष्ठ उत्तर के रूप में चिह्नित किया (क्योंकि यह मेरे लिए सबसे अधिक उपयोगी है)। हालाँकि इस तरह से मैंने समस्या हल की है:
नासारिश सही था मुझे इस लाइन की जरूरत थी मेरे में .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 को फिर से धन्यवाद।