emacs/.emacs.d/config.org:
- Added yaml-mode - Added ledger-mode config/.ssh/config: - cleaup
This commit is contained in:
5
emacs/.emacs.d/snippets/python-mode/logging-critical
Normal file
5
emacs/.emacs.d/snippets/python-mode/logging-critical
Normal file
@@ -0,0 +1,5 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: logging-critical
|
||||
# key: lcritical
|
||||
# --
|
||||
logging.critical(f'$0')
|
||||
5
emacs/.emacs.d/snippets/python-mode/logging-debug
Normal file
5
emacs/.emacs.d/snippets/python-mode/logging-debug
Normal file
@@ -0,0 +1,5 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: logging-debug
|
||||
# key: ldebug
|
||||
# --
|
||||
logging.debug(f'$0')
|
||||
5
emacs/.emacs.d/snippets/python-mode/logging-error
Normal file
5
emacs/.emacs.d/snippets/python-mode/logging-error
Normal file
@@ -0,0 +1,5 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: logging-error
|
||||
# key: lerror
|
||||
# --
|
||||
logging.error(f'$0')
|
||||
5
emacs/.emacs.d/snippets/python-mode/logging-info
Normal file
5
emacs/.emacs.d/snippets/python-mode/logging-info
Normal file
@@ -0,0 +1,5 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: logging-info
|
||||
# key: linfo
|
||||
# --
|
||||
logging.info(f'$0')
|
||||
5
emacs/.emacs.d/snippets/python-mode/logging-warning
Normal file
5
emacs/.emacs.d/snippets/python-mode/logging-warning
Normal file
@@ -0,0 +1,5 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: logging-warning
|
||||
# key: lwarning
|
||||
# --
|
||||
logging.warning(f'$0')
|
||||
Reference in New Issue
Block a user