This has become the single-file-git.vim plug-in building on single-file-git
This file contains 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/env python3 | |
""" | |
Adaption of https://github.com/tom-doerr/fix/blob/main/main.py | |
This script executes a program. | |
If the program throws an error, the script generates suggestions | |
for fixing the error. | |
""" |
This file contains 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
; Swap Alt+Tab and Win+Tab | |
; From https://www.autohotkey.com/boards/viewtopic.php?style=19&p=548067&sid=dfc532a1b55a0d25862c8ee98674e0db#p548067 | |
#HotIf WinActive("ahk_class XamlExplorerHostIslandWindow") | |
*!Tab::Send("{Alt Down}{Right}") | |
~*Alt Up::Send("{Enter}") | |
#HotIf | |
*!Tab::#Tab | |
; From https://www.autohotkey.com/docs/v2/Hotkeys.htm#AltTabWindow |
This file contains 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/env bash | |
# for each file, either back it up or restore it, in case it ends in a bkp extension | |
for f in "$@"; do | |
p="${f%/}" | |
[ "$p" != "${p%.bkp}" ] && | |
cp --archive --interactive --update --verbose "$p" "${p%.bkp}" || | |
cp -aiuv "${p}" "$p.bkp" | |
done; } |
This file contains 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
<# | |
.SYNOPSIS | |
Script to install Scoop apps | |
.DESCRIPTION | |
Script uses scoop | |
.NOTES | |
**NOTE** Will configure the Execution Policy for the "CurrentUser" to Unrestricted. | |
Original Author: Mike Pruett | |
Date: October 18th, 2018 |
This file contains 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
#!/bin/sh | |
# Change file permissions to be sane or safe inside a directory $dir by | |
# chmod-sane/safe $dir | |
# For example, ~/.gnupg better be safe whereas ~/.cache can be sane. | |
# Set permissions in a specified directory to a | |
# standard, reasonable setting where directories are executable and readable by | |
# all users (755), and files are readable and writable by the owner, and readable | |
# by others (644). Additionally, files with execute permissions set for any user |
This file contains 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
" Use arrow keys or Ctrl-J/K to scroll in popup window. | |
" Also useful for terminals that maps the mouse wheel scrolls to arrow keys | |
" For example Urxvt with its Vtwheel extension | |
" From https://fortime.ws/blog/2020/03/14/20200312-01/ | |
function! s:IsScrollPopup() | |
let winids = popup_list() | |
if empty(winids) | return {} | endif | |
let winid = winids[0] |
This file contains 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
" From https://old.reddit.com/r/neovim/comments/1c3gf93/commentreplnvim_run_code_from_your_buffer_and/ | |
" | |
" Add the following lines to `ftplugin/{python,sh,zsh,lua,perl, ...}.vim | |
" and call :EvaluateAsComment to add the evaluation of the selected lines as a comment: | |
" | |
" print(1+2) | |
" | |
" becomes | |
" | |
" # 3 |
This file contains 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
" A mapping that uses FZF to list all files in a Git repo and takes a count to restrict to | |
" those altered in last <count> commits. | |
nnoremap <silent><expr> g. v:count ? ':<c-u>' . v:count . 'GFilesAltered<cr>' : ':<c-u>GFiles<cr>' | |
command! -count=1 GFilesAltered call fzf#vim#files('', fzf#vim#with_preview( { | |
\ 'source': 'git log HEAD --max-count=<count> --diff-filter=MA --name-only --pretty=format: | ' . s:filter, | |
\ 'options': '--multi --prompt "Files altered in last <count> commits: "', | |
\ } )) | |
" If Fugitive is installed, there's a fallback, here's a possible fallback |
This file contains 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
; Run or Raise Application using Shortcut | |
; From https://gist.github.com/dewaka/c494543b4cd2a2dcd09cc5a6aa0f7517 adapted to ah2 | |
RunOrRaise(exePath, winID:="") { | |
if (winID == "") { | |
exeName := SubStr(exePath, InStr(exePath, "\", , -1)+1) | |
winID := "ahk_exe " . exeName | |
} | |
If not WinExist(winID) { | |
UserProfile := EnvGet("USERPROFILE") |