Settings: System Preferences » Keyboard » Key Repeat/Delay Until Repeat
Use the commands below to increase the key repeat rate on macOS beyond the possible settings via the user interface. The changes aren't applied until you restart your computer.
Settings: System Preferences » Keyboard » Key Repeat/Delay Until Repeat
Use the commands below to increase the key repeat rate on macOS beyond the possible settings via the user interface. The changes aren't applied until you restart your computer.
[ | |
{ | |
"command": "projectManager.listGitProjects#sideBarGit", | |
"key": "cmd+o" | |
}, | |
{ | |
"command": "expand_region", | |
"key": "ctrl+=", | |
"when": "editorTextFocus" | |
}, |
extension_id=jifpbeccnghkjeaalbbjmodiffmgedin # change this ID
curl -L -o "$extension_id.zip" "https://clients2.google.com/service/update2/crx?response=redirect&os=mac&arch=x86-64&nacl_arch=x86-64&prod=chromecrx&prodchannel=stable&prodversion=44.0.2403.130&x=id%3D$extension_id%26uc"
unzip -d "$extension_id-source" "$extension_id.zip"
Thx to crxviewer for the magic download URL.
-- original source: https://www.reddit.com/r/neovim/comments/1egdcql/show_upcoming_notion_calendar_event_in_neovim/ | |
-- plugin/tabline.lua | |
---@return string|osdate | |
local function current_time() | |
return os.date("%H:%M") | |
end | |
---@return string|osdate | |
local function current_day() |
-- Thanks to TJ for his Telescope implemntation of MultiGrep - This is the same but for Mini.Pick | |
-- youtube ref: https://www.youtube.com/watch?v=xdXE1tOT-qg | |
local MiniPick = require("mini.pick") | |
local M = {} | |
local symbol = "::" | |
local function create_multigrep_picker() | |
return function() | |
local process | |
local set_items_opts = { do_match = false } |