1
0
Files
nix-shared/home/develop/emacs/snippets/c++-mode/try

10 lines
164 B
Plaintext
Raw Normal View History

# -*- mode: snippet -*-
# name: try
# key: try
# a bit too intrusive now still, not always I want to do this
# --
try {
$0
} catch (${1:std::exception& e}) {
}