[ADD][SHELL] Alias for cppreference offline docs
Using the `cppreference` package from the AUR, I can simply view them on the go. Installing `stdman` is pretty great too, replacing the awful Doxygen auto-generated files for the standard library.
This commit is contained in:
parent
2bda68b126
commit
da6be50060
|
@ -35,3 +35,6 @@ alias folders='find . -maxdepth 1 -type d -print0 | xargs -0 du -sk | sort -rn'
|
||||||
# Quick compilation with flags
|
# Quick compilation with flags
|
||||||
alias clang++e='clang++ -Wall -Wextra -pedantic -Werror -std=c++17'
|
alias clang++e='clang++ -Wall -Wextra -pedantic -Werror -std=c++17'
|
||||||
alias g++e='g++ -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'
|
||||||
|
|
Loading…
Reference in a new issue