Skip to content

Instantly share code, notes, and snippets.

View fc1943s's full-sized avatar

stewshka fc1943s

  • Brazil
  • 12:19 (UTC -03:00)
View GitHub Profile
@aca
aca / ideavim_actionlist.md
Created March 14, 2020 14:46
IdeaVim ActionList

IdeaVim 0.55.2

--- actions ---
$copy                                              <c-c> <c-ins>
$cut                                               <c-x> <s-del>
$delete                                            <del>
$lru
$paste                                             <c-v> <s-ins>
$redo                                              <c-s-z> <a-s-bs>
$searchweb
@valin4tor
valin4tor / winrun.sh
Last active June 6, 2022 06:01
Workaround for microsoft/WSL#1614 (place in /usr/bin/winrun)
#!/bin/bash
command=$1
args=${@:2}
winrun_pid=$$
pidfile="/tmp/winrun-pid-$(date +%s)"
if [[ $args != '' ]]; then
argumentlist="-ArgumentList \"$args\""
fi