Views:
11,856
Votes: 16
✅ Solution
Tags:
scripts
text-editor
Link:
🔍 See Original Answer on Ask Ubuntu ⧉ 🔗
URL:
https://askubuntu.com/q/1188435
Title:
Is there a text editor that can run shell scripts?
ID:
/2019/11/13/Is-there-a-text-editor-that-can-run-shell-scripts_
Created:
November 13, 2019
Edited: June 12, 2020
Upload:
September 15, 2024
Layout: post
TOC:
false
Navigation: false
Copy to clipboard: false
From:
Gedit Plug-ins
Use gedit
external terminal plug-in
You can use gedit
with terminal plugin. The steps are fairly straight-forward:
- Enable “Universe” repository
- Install
gedit-plugins
- Activate “Embedded Terminal”
- Use Ctrl+F9 to open terminal
- Other
gedit
plug-ins
Step 1. Enable “Universe” repository
The first step is to ensure Universe
repository is activated from Settings
->Software & Updates
->Ubuntu Software
and ensure the third option is checked:
Step 2. Install gedit-plugins
Install gedit-plugs
with the command:
sudo apt install gedit-plugins
Step 3. Activate “Embedded Terminal”
Open gedit
(don’t use sudo
) and select Edit
->Preferences
->Plugins
and check off Embedded Terminal
:
Step 4. Use Ctrl+F9 to open terminal
In the GIF below we use Ctrl+F9 to get a tiny window with the command prompt. Use the mouse to drag the dividing line up.
Step 5. Other gedit
plug-ins
As mentioned in Step 4., you can grab the separator bar to make the terminal window bigger. Here’s what it looks like in a normal picture ((not a GIF).
There are three other plug-ins I currently use in the gedit
coding window:
- plug-in to display 80 character cut-off with different background color
- plug-in to display entire document in thumbnail you can drag to quickly go to code section
- Highlight matching brackets
For further reading please see:
- Code completion for gedit
- Useful Gedit plugins for programmers - HowtoForge
- gedit: Add Python / C++ Autocomplete Support - nixCraft
-
[5 Must-Have Gedit Plugins for Programmers Yaser Sulaiman’s Blog]8