summaryrefslogtreecommitdiff
path: root/modules/eshell-vterm-config.el
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2024-04-22 12:23:13 -0500
committerCraig Jennings <c@cjennings.net>2024-04-22 12:23:13 -0500
commit2dd3aed6971fe74915c1fc09b4de20a6c64e817b (patch)
treef9d896ebcfd0e6a2acb2684ff085a42324a9a638 /modules/eshell-vterm-config.el
parent5d18558615a127640d6b4e634997ee35a5fe1b77 (diff)
New Custom Functions, Org Updates, Agenda Updates, &c.
=== Functions === - add function cj/dired-convert-image-to-jpeg - add function cj/dired-copy-path-as-kill - add function cj/export-org-to-md-on-save function - add function cj/org-link-to-current-file === Agenda === - rework the f8 main agenda into custom agenda using Aaron Bieber's ideas - agenda lists now use standard agenda functions - updated packages to remove org-super-agenda and ts (a dependency) - file commentary text updated to reflect the change === Org === - add grocery and shopping list capture items - add missing tests for org-skip-subtree-if-habit - add support for org-habits, including checkboxes - fix issue with org-auto-export-to-md - modularize org-agenda - move todo settings to org-config - reformat org-roam-config === &c. === - add day to sortable date - add disablefastrenderer to hugo server flags - add fill column indicator when emacs lisping - add gpt buffers to the bury-alive-list - add keybinding for fixup-whitespace - add magit cloning settings - finish automatically on "Link" capture - fix company complaints about shutting up function - fix em, e, ff, and f eshell aliases - make fallback theme modus-vivendi - prune the compilation cache when applicable
Diffstat (limited to 'modules/eshell-vterm-config.el')
-rw-r--r--modules/eshell-vterm-config.el20
1 files changed, 13 insertions, 7 deletions
diff --git a/modules/eshell-vterm-config.el b/modules/eshell-vterm-config.el
index 7d37d9e5..c6e5cc1e 100644
--- a/modules/eshell-vterm-config.el
+++ b/modules/eshell-vterm-config.el
@@ -65,20 +65,26 @@
(add-to-list 'eshell-visual-options '("git" "--help" "--paginate"))
;; aliases
- (eshell/alias "clear" "clear 1") ;; leaves the prompt at the top of the window
- (eshell/alias "e" "find-file $*")
+ (eshell/alias "clear" "clear 1") ;; leaves prompt at the top of the window
+ (eshell/alias "e" "find-file $1")
(eshell/alias "gocj" "cd /sshx:cjennings@cjennings.net:/var/cjennings/")
(eshell/alias "gosb" "cd /sshx:cjennings@wolf.usbx.me:/home/cjennings/")
(eshell/alias "gowolf" "cd /sshx:cjennings@wolf.usbx.me:/home/cjennings/")
(eshell/alias "v" "eshell-exec-visual $*")
- (eshell/alias "ff" "find-file-other-window $*")
- (eshell/alias "f" "cj/eshell-find-using-dired $1")
+ (eshell/alias "ff" "find-file-other-window $1")
+ (eshell/alias "f" "find-using-dired $1")
(eshell/alias "r" "ranger")
- (eshell/alias "em" "find-file $*")
- (eshell/alias "emacs" "find-file $*")
+ (eshell/alias "em" "find-file $1")
+ (eshell/alias "emacs" "find-file $1")
(eshell/alias "ll" "ls -l"))))
-(defun cj/eshell-find-using-dired (file-pattern)
+(defun eshell/find-file-other-window (file)
+ (find-file-other-window (mapconcat 'identity file " ")))
+
+(defun eshell/find-file (file)
+ (find-file-other-window (mapconcat 'identity file " ")))
+
+(defun eshell/find-using-dired (file-pattern)
"Find a file FILE-PATTERN' using 'find-name-dired'."
(let ((escaped-pattern (regexp-quote file-pattern)))
(find-name-dired . escaped-pattern)))