In Ubuntu, if you get:
Error: No word lists can be found for the language “en_US”.
when trying to start ispell (e.g., M-x ispell-buffer) from Emacs, then you need to install the aspell-en package:
sudo apt-get install aspell-en
In Ubuntu, if you get:
Error: No word lists can be found for the language “en_US”.
when trying to start ispell (e.g., M-x ispell-buffer) from Emacs, then you need to install the aspell-en package:
sudo apt-get install aspell-en
In Emacs, you can not only select by lines, but also by columns. If you select by columns, the selection is called a rectangle. You can use rectangles with the following shortcuts:
To insert sequential values into a container, you could use the iota function available in ext/numeric header. For example:
#include <ext/numeric>
#include <vector>
…
std::vector<int> v(5);
__gnu_cxx::iota(v.begin(), v.end(), 0);
v will contain {0, 1, 2, 3, 4}.
For more information see sgi documentation