This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if exists('g:loaded_auto_search_highlighting') | |
finish | |
endif | |
let g:loaded_auto_search_highlighting = 1 | |
if ! exists('g:auto_search_highlighting') | |
let g:auto_search_highlighting = 1 | |
endif |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3 | |
""" | |
The script accepts either an argument or stdin line as a Vim server name | |
and focuses on i3 window contaning that Vim instance. | |
Read `:help client-server | |
<http://vimdoc.sourceforge.net/htmldoc/remote.html#client-server>`_. | |
Requires ``psutil`` :: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""See | |
https://hub.netzgemeinde.eu/channel/vim_sensei?mid=b64.aHR0cHM6Ly9odWIuaG90ZWxkYWFuLm5sL2l0ZW0vZGU2MjI1MDgtZjc1Ni00MGUzLWI1MTgtYjE1YTkwYTg2MWJi | |
for details on how to set up Vim to produce the log that this script parses. | |
""" | |
import fileinput | |
import os | |
import re | |
import signal | |
import sys |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <string.h> | |
#include QMK_KEYBOARD_H | |
#include "streak.h" | |
enum keycodes { | |
STREAK = SAFE_RANGE, | |
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is a modified version of `edit_command_buffer` distributed with fish. | |
function edit_command_buffer_with_scrollback --description 'Edit the command buffer in an external editor' | |
set -l f (mktemp) | |
or return 1 | |
if set -q f[1] | |
command mv $f $f.fish | |
set f $f.fish | |
else | |
# We should never execute this block but better to be paranoid. | |
if set -q TMPDIR |
OlderNewer