Atom
De Linuxmemo.
(Différences entre les versions)
(→Proxy) |
(→Bug) |
||
| (17 versions intermédiaires masquées) | |||
| Ligne 3 : | Ligne 3 : | ||
==install== | ==install== | ||
| - | + | *[[Npm]] est le gestionnaire de paquets officiel de Node.js | |
| - | sudo | + | '''apt install npm''' |
| + | *snap atom | ||
| + | sudo snap install atom | ||
==Packages== | ==Packages== | ||
| + | *cli - Atom Package Manager - https://github.com/atom/apm | ||
| + | apm help install | ||
| + | apm search terminal | ||
| + | apm view platformio-ide-terminal | ||
| + | apm install platformio-ide-terminal | ||
| + | |||
*install auto | *install auto | ||
apm install <NomPackage> | apm install <NomPackage> | ||
| + | (Attention il faut bien installer npm avant.) | ||
| + | |||
| + | mes packages: | ||
| + | apm install busy-signal file-icons french-menu highlight-selected intentions language-puppet linter linter-puppet linter-ruby linter-ui-default minimap platformio-ide-terminal w3c-validation ide-bash | ||
*install manuelle | *install manuelle | ||
| Ligne 14 : | Ligne 26 : | ||
git clone https://github.com/url_to_your_package | git clone https://github.com/url_to_your_package | ||
cd your_package | cd your_package | ||
| - | + | apm install | |
| - | *liste de | + | *liste de mes packages |
| - | + | apm list | |
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
==Proxy== | ==Proxy== | ||
| Ligne 44 : | Ligne 42 : | ||
/var/lib/snapd/desktop/applications/atom_atom.desktop | /var/lib/snapd/desktop/applications/atom_atom.desktop | ||
| + | |||
| + | *How do I open files in ‘hidden’ folders? | ||
| + | CTRL + H | ||
| + | |||
| + | |||
| + | ==Usefull shortcuts== | ||
| + | |||
| + | Ctrl Shift P -> all atom commands | ||
| + | Ctrl P -> find files ou Ctrl T | ||
| + | Ctrl R -> jump to a method, name, etc... | ||
| + | Ctrl <space> -> completion | ||
| + | Ctrl K <fleche droite ou haute> split panels | ||
| + | Ctrl Shift d -> copiy line | ||
| + | Ctrl Maj K -> delete line | ||
| + | Ctrl / -> comment | ||
| + | Ctrl Tab -> switch between open files | ||
| + | Ctrl g -> go to line | ||
| + | Alt Shift (+ flèche) : rectangular sélection | ||
| + | Ctrl click : multiple edition | ||
Version actuelle en date du 12 mai 2021 à 10:41
Text editor
Sommaire |
[modifier] install
- Npm est le gestionnaire de paquets officiel de Node.js
apt install npm
- snap atom
sudo snap install atom
[modifier] Packages
- cli - Atom Package Manager - https://github.com/atom/apm
apm help install apm search terminal apm view platformio-ide-terminal apm install platformio-ide-terminal
- install auto
apm install <NomPackage> (Attention il faut bien installer npm avant.)
mes packages: apm install busy-signal file-icons french-menu highlight-selected intentions language-puppet linter linter-puppet linter-ruby linter-ui-default minimap platformio-ide-terminal w3c-validation ide-bash
- install manuelle
cd ~/.atom/packages git clone https://github.com/url_to_your_package cd your_package apm install
- liste de mes packages
apm list
[modifier] Proxy
#apm config set strict-ssl false #apm config set https-proxy https://172.21.251.23:8080 apm config set proxy http://172.21.251.23:8080 apm config get https-proxy
[modifier] Bug
sudo npm install -g n # install node version manager "n" sudo n stable # install the latest stable version of node
/var/lib/snapd/desktop/applications/atom_atom.desktop
- How do I open files in ‘hidden’ folders?
CTRL + H
[modifier] Usefull shortcuts
Ctrl Shift P -> all atom commands Ctrl P -> find files ou Ctrl T Ctrl R -> jump to a method, name, etc... Ctrl <space> -> completion Ctrl K <fleche droite ou haute> split panels Ctrl Shift d -> copiy line Ctrl Maj K -> delete line Ctrl / -> comment Ctrl Tab -> switch between open files Ctrl g -> go to line Alt Shift (+ flèche) : rectangular sélection Ctrl click : multiple edition