Martin Tournoij
Martin Tournoij
By checking for presence in window it doesn't trigger the warning, which is a bit annoying since it's in my console all the time and makes it harder to see...
This ties in to my other patch at [1]; my goal is that geoIP entries are inserted "on the fly" in the SQL database (which simplifies some queries) when they're...
The following file: ``` package x import ( "fmt" "net/mail" ) func t() { var m mail.Address fmt.Printf("%s → %s\n", m.) } ``` Completing the `m` doesn't work in lsc....
From HN comment https://news.ycombinator.com/item?id=21780608 > `echo -n "$selected_symbol" | xclip -i` > > And then fake a middle click to insert in the current application: > > `xdotool click 2`o...
The U+FE0F and U+FE0E can control if a character is displayed in "character style" or "emoji style"; this matters for some characters that have representations in both: ↔︎ (fe0e, text)...
The use case for this is pretty much as in the test: I'd like to get the data section of a database file. As far as I know there's no...
Fixes #453 Downside: this is not entirely backwards compatible; e.g. my app will actually break because it *assumes* you're running it behind a proxy and won't remove the port. Then...
If you set cmdheight to 0, the showmode text never clears: % vim --noplugin -u NONE +'cmdheight=0 showmode' "-- INSERT --" shows, but after leaving insert mode it stays around...
% lldb ~/src/vim/src/vim -- --noplugin -u NONE +':set cmdheight=0' ~/.vim/vimrc After a bit of editing Vim segfaults; I haven't been able to determine clear steps to reproduce it, but usually...
See: https://github.com/fatih/vim-go/pull/1390#discussion_r170689216