Skip to content

Commit

Permalink
Wednesday 2024-11-27 03:25:53
Browse files Browse the repository at this point in the history
  • Loading branch information
jackokring committed Nov 27, 2024
1 parent a31cca7 commit b34e744
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
7 changes: 5 additions & 2 deletions extras-backup/.bashrc
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ p() {
pet search "$@"
}

n() {
pn() {
# pet new -- command snippet
pet new "$@"
}
Expand Down Expand Up @@ -367,7 +367,7 @@ echo "# ${GREEN}glade$NONE Gtk GUI designer (XML template tool)"
echo "# ${GREEN}//$NONE process launcher (rofi tool)"
echo "# ${GREEN}/$NONE cd to commonly used (rofi tool)"
echo "# ${GREEN}v$NONE neovim in st session"
echo "# ${GREEN}p n$NONE pet search and pet new (command snippets)"
echo "# ${GREEN}p pn$NONE pet search and pet new (command snippets)"
echo "# ${GREEN}freeze$NONE freeze tmux seesion for /"
echo
if [ -d "$HOME/.cargo/bin" ]; then
Expand All @@ -390,4 +390,7 @@ eval "$(starship init bash)"
. /usr/share/autojump/autojump.sh
# last, may include venv $PATH mash of added afterj

# Set up fzf key bindings and fuzzy completion
eval "$(fzf --bash)"

coproc espeak-ng "What are you doing Dave? They're all dead Dave."
4 changes: 2 additions & 2 deletions lua/doris/util.lua
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ end

-- os utilities not _G ones
local nv = require("doris.novaride")
nv.track(os)
os = nv.track(os)

---replace double quotes by escaped double quotes only
---then escape $ and add surrounding double quotes
Expand All @@ -58,6 +58,6 @@ os.has = function(cmd)
return os.execute() == true and os.execute("which " .. cmd) == true
end

nv.untrack(os)
os = nv.untrack(os)

novaride.restore()

0 comments on commit b34e744

Please sign in to comment.