aboutsummaryrefslogtreecommitdiff
path: root/config.def.h
AgeCommit message (Collapse)AuthorFilesLines
2014-10-19<End> goes past end in insert modeStephen Paul Weber1-0/+1
Just like in vim
2014-10-19Toggle case operatorStephen Paul Weber1-0/+1
In vim, :set tildeop to get this behaviour
2014-10-17Make editor usable as a filter: echo foo | vis - | catMarc André Tanner1-1/+1
The terminal output is by default redirected to stderr, making stdout available for communications purposes. If a file is "opened" from stdin (i.e. vis is given '-' as argument) and a subsequent write without a filename is performed as in ":wq" the output is written to stdout.
2014-10-07Add syntax rules for HaskellStephen Paul Weber1-4/+64
2014-09-30Improve some syntax highlighting rulesMarc André Tanner1-4/+4
2014-09-30Make text objects available in visual modeMarc André Tanner1-16/+27
2014-09-30Clean up visual mode handlingMarc André Tanner1-4/+6
2014-09-30Unbreak 'J' in normal modeMarc André Tanner1-1/+1
2014-09-30Allow to supend the editor via CTRL-ZMarc André Tanner1-0/+1
2014-09-30Promote join to an operatorMarc André Tanner1-1/+2
Make 'J' work on a selection in visual mode.
2014-09-28Make '.' repeat last insertionMarc André Tanner1-0/+3
2014-09-27Add insert mode key bindings CTRL-X+CTRL-{E,Y}Marc André Tanner1-0/+2
2014-09-27Hook up shifting in insert mode via CTRL-{D,T}Marc André Tanner1-0/+2
2014-09-27Implement 'zt', 'zz', 'zb'Marc André Tanner1-0/+3
In particular 'zb' might not work if there are wrapped lines involved.
2014-09-27Implement '#'Marc André Tanner1-1/+2
2014-09-27Add text objects for word (lowercase) variantMarc André Tanner1-2/+4
2014-09-27Implement :bdeleteMarc André Tanner1-0/+1
2014-09-27Implement proper distinction between word and WORDMarc André Tanner1-4/+4
2014-09-25Realign a few code blocks, no functional changesMarc André Tanner1-103/+103
2014-09-25Add infrastructure for word (lowercase) motionsMarc André Tanner1-0/+1
This unfortunately doesn't work as is which is why it is not actually hooked up to key bindings.
2014-09-25Perform some renames in preparation for different word typesMarc André Tanner1-14/+14
2014-09-25Exit command prompt if last character is deletedMarc André Tanner1-0/+1
2014-09-25Accept :se as abbreviation for :setale rimoldi1-1/+1
2014-09-25Implement '*'Marc André Tanner1-0/+1
This still has a couple of problems: - it uses the regular expression search (because 'n' and 'N' should operate on the same search term) - the word should be deliminited not only by spaces but also by special symbols. this should be fixed once the word/WORD distinction gets implemented
2014-09-25Make '$' move to the last character of a lineMarc André Tanner1-1/+1
It is an inclusive movement, thus 'd$' works as expected.
2014-09-24Implement 'ZZ' and 'ZQ'Marc André Tanner1-0/+2
2014-09-24Implement window related keys (CTRL-W ...) in terms of ':'-commandsMarc André Tanner1-2/+3
2014-09-24Implement :new and :vnewMarc André Tanner1-0/+2
2014-09-24<num>gg should go to <num> lineMarc André Tanner1-2/+2
2014-09-24Implement 'g0', 'gm', 'g$'Marc André Tanner1-0/+3
2014-09-24Rename MOVE_LINE_{UP,DOWN} to MOVE_SCREEN_LINE_{UP,DOWN}Marc André Tanner1-10/+10
No functional change
2014-09-24Implement 'gU' and 'gu'Marc André Tanner1-0/+2
This obviously only works for ascii characters.
2014-09-24Handle filenames with spacesMarc André Tanner1-14/+14
Before :w foo bar would create 2 files whereas now 1 file named "foo bar" will be created. Longterm such ambigious command arguments should be given surrounded with quotes.
2014-09-24Implement :saveas commandMarc André Tanner1-0/+1
2014-09-23Implement 'P', fix 'p'Marc André Tanner1-1/+2
This should also make 'xp' work as expected i.e. to swap characters.
2014-09-23Implement append in insert mode 'a'Marc André Tanner1-0/+1
2014-09-23Implement linewise visual modeMarc André Tanner1-6/+37
2014-09-22Add support for the '<', '>' marksMarc André Tanner1-0/+4
2014-09-22Make idle timeout configurable per modeMarc André Tanner1-0/+2
2014-09-20Revert some multiline syntax definitionsMarc André Tanner1-5/+5
Since we do not color content before the visible area, these rules work better for now.
2014-09-19Improve syntax highlightingMarc André Tanner1-65/+75
2014-09-19Implement expand tab functionality, make tabwidth configurableMarc André Tanner1-0/+2
If expandtab is enabled then inserted tabs are replaced by tabwidth amount of spaces. Both settings apply to all windows files and can be changed via: :set tabwidth n # where 1 <= n <= 8 :set expandtab (1|yes|true)|(0|no|false)
2014-09-18Ignore tab key in command prompt for nowMarc André Tanner1-0/+1
2014-09-17Implement left shift operatorMarc André Tanner1-0/+1
2014-09-17Implement right shift operatorMarc André Tanner1-0/+1
2014-09-16Fix scrolling direction of CTRL-{F,B}Marc André Tanner1-2/+2
2014-09-16Implement CTRL-{U,D,E,Y} in normal modeMarc André Tanner1-8/+12
2014-09-16Import syntax rules from sandyMarc André Tanner1-23/+179
2014-09-15More efficient syntax highlighting, first match winsMarc André Tanner1-22/+40
2014-09-14Display current mode in window statusbarMarc André Tanner1-7/+12
For now just display the modes which start with '-'. I want to keep the descriptive names of the other modes available for debugging purposes.