You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I study HTML, chose the atom editor.
Please tell me how to add a formatting menu bar to Atom-“cut", "copy", "paste". It is uncomfortable to work without them.
The text was updated successfully, but these errors were encountered:
Hi @egor230 can you provide a bit more detail on how you're using tool-bar? In general what you want to do is add a snippet like the one below to your toolbar configuration, but how to do that depends on how you use tool-bar.
Based on the examples in this repositories README and the fact that Atom's "cut", "copy", and "paste" commands are core:cut, core:copy, and core:paste respectively.
toolBar.addButton({callback: 'core:cut',tooltip: 'Cut',/* This just gives it an appropriate icon */icon: 'cut',iconset: 'fa'});toolBar.addButton({callback: 'core:copy',tooltip: 'Cut',/* This just gives it an appropriate icon */icon: 'copy',iconset: 'fa'});toolBar.addButton({callback: 'core:paste',tooltip: 'Paste',/* This just gives it an appropriate icon */icon: 'paste',iconset: 'fa'});
thank you very much for the quick and complete answer. thank you very much. I used to work with C++ in the Studio. there is a formatting panel, which is very convenient when only one hand can work. then decided to study web. hot keys to press through the nose difficult, began to search for how to add a menu bar with the option of adding buttons. tell me, please, where to insert it? in the json?,
I study HTML, chose the atom editor.
Please tell me how to add a formatting menu bar to Atom-“cut", "copy", "paste". It is uncomfortable to work without them.
The text was updated successfully, but these errors were encountered: