diff --git a/ChangeLog.md b/ChangeLog.md index 85810f1d..c87b839a 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -36,6 +36,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - Change shortcut for constructor from `cr` to `co` ([#43](https://github.com/josefpihrt/snippetica/pull/43)). - Change shortcut for ternary conditional operator from `co` to `cop` ([#43](https://github.com/josefpihrt/snippetica/pull/43)). - Change shortcut for 'module declaration' from `me` to `mo` ([#44](https://github.com/josefpihrt/snippetica/pull/44)). +- Change shortcut for 'destructor declaration' from `dr` to `de` ([#45](https://github.com/josefpihrt/snippetica/pull/45)). ### Removed diff --git a/src/Snippetica.VisualStudio.Dev/Snippetica.Cpp.Dev/DeleteKeyword.snippet b/src/Snippetica.VisualStudio.Dev/Snippetica.Cpp.Dev/DeleteKeyword.snippet deleted file mode 100644 index f8e46f87..00000000 --- a/src/Snippetica.VisualStudio.Dev/Snippetica.Cpp.Dev/DeleteKeyword.snippet +++ /dev/null @@ -1,15 +0,0 @@ - - -
- delete keyword - de - delete keyword - Josef Pihrt - - Expansion - -
- - - -
\ No newline at end of file diff --git a/src/Snippetica/Snippetica.Cpp/AutoGeneration/Destructor.snippet b/src/Snippetica/Snippetica.Cpp/AutoGeneration/Destructor.snippet index 2c141a35..9d92d9f7 100644 --- a/src/Snippetica/Snippetica.Cpp/AutoGeneration/Destructor.snippet +++ b/src/Snippetica/Snippetica.Cpp/AutoGeneration/Destructor.snippet @@ -2,7 +2,7 @@
destructor - dr + de destructor Josef Pihrt