diff --git a/doc/prog-linux.rst b/doc/prog-linux.rst index fbaaa13..977559d 100644 --- a/doc/prog-linux.rst +++ b/doc/prog-linux.rst @@ -252,63 +252,6 @@ VSCode. For additional features, check out the `Language Server Integration -<,>`` under *install*. -``atom`` can be easily extended to a complete integrated development environment, -but we will assume you are working with a vanilla version including the four -additional packages here. - -Start ``atom`` by using ``-`` and typing atom in the quick launch bar -or searching the start menu for ``atom``. - -.. image:: img/atom-new.png - :alt: New atom instance - -Having started a new instance of ``atom`` you either have already an empty -file opened or you can open a new file by ``-``, save the file -with ``-`` by creating a new directory and giving the file a name there, -if you name the file ``hello.f90`` it will be automatically identified as -Fortran source code. - -.. image:: img/atom-new-folder.png - :alt: Always save your files - -You can start a shell by hitting ``--

`` and typing ``terminal`` -in the quick launcher of ``atom`` the shell can be used for all commands you -previously learned. - -.. image:: img/atom-terminal.png - :alt: Quicklaunch terminal - -.. note:: - - If you are using atom in Windows and have installed WSL, you can start a - Unix shell by typing ``wsl`` or ``bash`` in the command line of the terminal - you just opened in ``atom``. - -Later you can use it to compile and execute your programs without leaving -your editor. For example, we write a simple Fortran program to print a line -to the screen, save it and compile it using ``gfortran`` in our shell inside -``atom``. - -.. image:: img/atom-run.png - :alt: Running gfortran from atom - Vim ~~~ @@ -319,7 +262,7 @@ graphical user interface. However, getting past the initial learning curve can take the better part of a month, but having truly mastered ``vim`` usually results in a huge performance -gain when developing. We encourage you to pick up ``vim`` instead of ``atom``. +gain when developing. We encourage you to pick up ``vim`` instead of ``vscode``. To get started with ``vim`` open a new terminal (type ``-`` for the quick launch menu, then type ``konsole`` or search for it in the menu) and diff --git a/doc/setup.rst b/doc/setup.rst index 7722801..2048ff4 100644 --- a/doc/setup.rst +++ b/doc/setup.rst @@ -157,7 +157,7 @@ Ubuntu Starting with a fresh version of `Ubuntu 18.04`_ we have to install a few programs first. -You have to install the packages: ``git``, ``gfortran``, ``make``, ``atom`` and ``vim``. +You have to install the packages: ``git``, ``gfortran``, ``make``, and ``vim``. We will assume you are working with ``apt`` to install packages, in case you prefer another package manager, feel free to install the packages listed here with this one (see `Ubuntu install & remove software`_). @@ -167,7 +167,7 @@ with this one (see `Ubuntu install & remove software`_). .. code-block:: bash - sudo apt install git gfortran make atom vim + sudo apt install git gfortran make vim .. note:: @@ -254,7 +254,6 @@ To setup your MacOS for the course follow this steps or by using Homebrew (see :ref:`gfortran from homebrew`) 5. Install the Fortran package manager from conda (see :ref:`fpm from conda`) or homebrew (see :ref:`gfortran from homebrew`) -6. Download and install `atom `_. .. important::