summary refs log tree commit diff stats
path: root/doc/uml/cpp_includes
blob: 531b86f76399de1925b8dd38e23d8eaf94d76178 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
// "a type" "needed cpp_includes"
"vector" "#include <vector>
using namespace std;"

"list" "#include <list>
using namespace std;"

"map" "#include <map>
using namespace std;"

"string" "#include <string>
using namespace std;"
effect of this function, you can type "cd -" to return to the # original directory. function ranger-cd { tempfile="$(mktemp -t tmp.XXXXXX)" /usr/bin/ranger --choosedir="$tempfile" "${@:-$(pwd)}" test -f "$tempfile" && if [ "$(cat -- "$tempfile")" != "$(echo -n `pwd`)" ]; then cd -- "$(cat "$tempfile")" fi rm -f -- "$tempfile" } # This binds Ctrl-O to ranger-cd: bind '"\C-o":"ranger-cd\C-m"'