2015-10-20 8 views
6

अभी मुझे उस शब्द को हाइलाइट करना है जो गलत वर्तनी के रूप में रेखांकित है, फिर इसे डबल क्लिक करें, फिर correct spelling चुनें, फिर सही शब्द चुनें। मैं इन सभी चरणों को लिखकर थक गया हूं, कोई विचार यह कैसे तेजी से किया जाए? मैं विम प्लगइन का उपयोग करता हूं, इसलिए किसी भी समाधान के लिए प्लस 1 जो मुझे ट्रैकपैड/माउस से बचने देगा।परमाणु में वर्तनी जांच करने का एक तेज़ तरीका है?

उत्तर

1

1.11.0-beta5 एटम के संस्करण के साथ, मुझे स्वयं वर्तनी-जांच कीबोर्ड शॉर्टकट पंजीकृत करना पड़ा।

'.platform-darwin atom-text-editor': 
    'cmd-:': 'spell-check:correct-misspelling' 

'.platform-darwin .corrections atom-text-editor': 
    'cmd-:': 'core:cancel' 

'.platform-win32 atom-text-editor': 
    'ctrl-:': 'spell-check:correct-misspelling' 

'.platform-win32 .corrections atom-text-editor': 
    'ctrl-:': 'core:cancel' 

'.platform-linux atom-text-editor': 
    'ctrl-:': 'spell-check:correct-misspelling' 

'.platform-linux .corrections atom-text-editor': 
    'ctrl-:': 'core:cancel' 

'.corrections atom-text-editor[mini]': 
    'enter': 'core:confirm' 
    'tab': 'core:confirm' 

स्रोत:: https://github.com/atom/spell-check/blob/master/keymaps/spell-check.cson

- (> कीमैप संपादित करें)

मैं अपने keymap.cson में निम्नलिखित डाल

8

डिफ़ॉल्ट रूप से, कुंजीपटल शॉर्टकट cmd-shift-: (ctrl-shift-: विंडोज़ पर) आपके कर्सर को गलत वर्तनी वाले शब्द पर त्वरित रूप से सुधार की एक सूची लाएगा।

संबंधित मुद्दे