Age | Commit message (Collapse) | Author |
|
update `language_v.lua`
|
|
|
|
|
|
Highlight current block in `indentguide`
|
|
|
|
|
|
Before, if a line was highlighted, all the frames it contained were
invisible.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
This plugin displays your current typing speed in characters per minute
and words per minute in the status bar.
I tried to keep the logic very simple, so instead of using real accurate
values, it counts characters/words in the current minute and adds
the value of the previous minute multiplied by the percentage needed to
'complete' the current minute (so it basically always displays the value
for one minute, but the part of it that falls into the last minute uses
the average):
```
words_last * (1 - (t.sec) / 60) + words
```
This should give fairly good results without the need for complicated code
or falling back to 0 after every minute.
|
|
|
|
- Add support for multiple carets
- Avoid making the caret "jump" around on blink
- Don't animate the caret during scroll
- Consistently animate the caret on click
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Language Diff
|
|
|
|
|
|
|
|
name too on emails
|
|
|
|
|
|
coloring function, variable declarations and more
|
|
fix from language_sh.
|
|
language_go: add goto as keyword
|
|
|
|
|
|
|
|
|
|
|
|
colorpreview.lua: support alpha
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|