Make the dummy function more obvious

This commit is contained in:
Lucien Cartier-Tilet 2022-03-02 17:43:10 +01:00
parent 5f6645c032
commit b2813060a0
Signed by: phundrak
GPG Key ID: BD7789E705CB8DCA
1 changed files with 3 additions and 3 deletions

View File

@ -123,10 +123,10 @@ The exit status of the command is stored in
" ") " ")
'bitwarden--shell-status)) 'bitwarden--shell-status))
(defun bitwarden-hello () (defun bitwarden-dummy ()
"Dummy function." "Dummy function."
(interactive) (interactive)
(message "hello")) (message "Hello from bitwarden.el!"))
;;; Transient Infixes ;;; Transient Infixes
(eval-when-compile (eval-when-compile
@ -338,7 +338,7 @@ This function is meant to be called by a transient.")
("c" "Config" bitwarden--config) ("c" "Config" bitwarden--config)
("l" "Login" bitwarden--login) ("l" "Login" bitwarden--login)
("L" "Lock" bitwarden-lock) ("L" "Lock" bitwarden-lock)
("s" "sync" bitwarden-hello)]) ("s" "sync" bitwarden-dummy)])
;;; Public functions ;;; Public functions
(defun bitwarden-lock () (defun bitwarden-lock ()