Update .gitignore and add doc-mode.el.

This commit is contained in:
2016-03-03 07:56:09 +01:00
parent c5dc520502
commit 7360b81ba1
9 changed files with 990 additions and 309 deletions

View File

@@ -0,0 +1,5 @@
# -*- mode: snippet -*-
# name: shared_ptr
# key: sptr
# --
std::shared_ptr<${1:type}> ${2:name}$0

View File

@@ -0,0 +1,5 @@
# -*- mode: snippet -*-
# name: todo_full
# key: todo
# --
`(yas-with-comment "TODO: ")`

View File

@@ -0,0 +1,5 @@
# -*- mode: snippet -*-
# name: unique_ptr
# key: uptr
# --
std::unique_ptr<${1:type}> ${2:name}$0

View File

@@ -0,0 +1,5 @@
# -*- mode: snippet -*-
# name: weak_ptr
# key: wptr
# --
std::weak_ptr<${1:type}> ${2:name}$0