diff --git a/shell/.aliases b/shell/.aliases index 7eecfe6..7b2249f 100644 --- a/shell/.aliases +++ b/shell/.aliases @@ -35,3 +35,6 @@ alias folders='find . -maxdepth 1 -type d -print0 | xargs -0 du -sk | sort -rn' # Quick compilation with flags alias clang++e='clang++ -Wall -Wextra -pedantic -Werror -std=c++17' alias g++e='g++ -Wall -Wextra -pedantic -Werror -std=c++17' + +# Quick documentation using the cpprefernce AUR package +alias cppref='firefox /usr/share/doc/cppreference/en/cpp.html'