Separate word lists for nouns, verbs, adjectives, etc

If you download just the database files from wordnet.princeton.edu/download/current-version you can extract the words by running these commands: egrep -o “^[0-9]{8}\s[0-9]{2}\s[a-z]\s[0-9]{2}\s[a-zA-Z_]*\s” data.adj | cut -d ‘ ‘ -f 5 > conv.data.adj egrep -o “^[0-9]{8}\s[0-9]{2}\s[a-z]\s[0-9]{2}\s[a-zA-Z_]*\s” data.adv | cut -d ‘ ‘ -f 5 > conv.data.adv egrep -o “^[0-9]{8}\s[0-9]{2}\s[a-z]\s[0-9]{2}\s[a-zA-Z_]*\s” data.noun | cut -d ‘ ‘ -f 5 … Read more

How do I correct Vim spelling mistakes quicker?

An improvement to PDug’s answer: To make the spelling correction undoable separately from the insertions, use this: imap <c-l> <c-g>u<Esc>[s1z=`]a<c-g>u <c-g>u inserts an undo-break The rest is the same. This way, if you don’t like the chosen correction, you can undo it using <Esc>u. Without the undo-breaks, this would undo the complete insertion. Note that … Read more

Disable spell check on field names in Android Studio

Spell check can be customized/disable via: Android 1.1.0: File -> Settings (Project Settings […]) -> Inspections -> Spelling -> Typo Android 4.1.1: File -> Preferences -> Editor -> Inspections -> Proofreading -> Typo This brings up three options that can be enabled/disabled: Process code Process literals Process comments Uncheck whichever boxes you would like

How to add a dictionary for spell check in Android Studio / IntelliJ Idea

You can download the Spanish (or any other language) ASCII dictionary from http://www.winedt.org/dictASCII.html and then add it to Android Studio as sebaszw said: Go to Settings -> Spelling -> Dictionaries Click plus symbol(+) Select path to your dictionaries folder (inside you must have plaintext word lists with .dic extension) Restart Android Studio It worked for … Read more