.emacs.d/snippets/c++-mode/try

14 lines
171 B
Plaintext
Raw Normal View History

2019-09-10 16:09:52 +02:00
# -*- mode: snippet -*-
# name: try
# key: try
# a bit too intrusive now still, not always I want to do this
# --
try
{
$0
}
catch (${1:const std::exception &e})
{
}