Tagged Questions
gedit is a general purpose and powerful text editor for the GNOME desktop environment, Mac OS X, and Microsoft Windows.
14
votes
10answers
2k views
Math in reStructuredText with LaTeX
I would like to use a lightweight markup language to take notes in my college classes.
My editor of choice is gedit, and I found reStructuredText Tools for Gedit, which will run the reStructuredText ...
9
votes
4answers
1k views
is there any plugin to use git on gedit on ubuntu?
i would like to use a git plugin while coding on gedit. i mean by that buttons for commit or shortcuts.
thank you.
9
votes
1answer
5k views
Creating your own syntax highlighting in GEdit?
How do you add a 'keyword' to the GEdit list of keywords? I basiclly want to make the printf function look like a keyword.
printf("Hello World\n");
5
votes
2answers
507 views
Github syntax highlight style scheme for Gedit?
I like the syntax highlight style scheme used for R scripts in github and I would like to get it to my gedit editor. Where could I get it?
5
votes
1answer
2k views
How to make GEdit a good jQuery/Web Design editor?
I want to have Syntax Highlighting for jQuery and maybe when I type <html> it can automatically insert </html>. Is there anyway to make GEdit do this?
5
votes
2answers
1k views
gedit plugin development in python
Does anyone know where information about writing gedit plugins can be found ? I'm interested in writing them in Python. I know of Gedit/PythonPluginHowTo
, but it isn't very good . Besides the code ...
4
votes
4answers
833 views
Is there a plugin for Gedit to highlight matching HTML tags?
That'd be neat. I couldn't find one using google though. Anyone heard or seen something for Gedit or wanna make a plugin?
3
votes
1answer
61 views
How to get the length of the current line (or the offset of the end of the line) in a Gedit plugin
In a Gedit plugin written in Python, I can get the offset of the beginning of the current line with
document = window.get_active_document()
offset = document.get_iter_at_mark(document.get_insert())
...
3
votes
2answers
373 views
Gedit Zen Coding Plugin
I've tried multiple times to install the Zen Coding plugin for Gedit in Ubuntu 11.10. (I have all the latest updates installed.) I know I'm doing it correctly because I've done it on other ...
3
votes
3answers
311 views
pylons/pyramid code completion with gedit and virtualenv
I am working through the pyramid documentation and would really like code completion. I installed gedit-plugin-codecompletion
I am using virtualenv, once created I use the 'activate' file in the ...
3
votes
2answers
629 views
Need help in finding an HTML, CSS, PHP code formatter for gedit
I need help in finding an HTML, CSS, PHP code formatter plug-in for gedit. I've looked into gmate and other plug-ins but I could only find code formatter for Ruby/Rails files.
3
votes
2answers
387 views
Highlight all matching words on double click in gedit
IDEs like Eclipse, CodeBlocks and editors like Notepad++ highlights all instances of a double clicked word. I miss this feature in gedit. Of course, I can do Ctrl+k to highlight all instanced, but it ...
3
votes
2answers
178 views
Regex to match double underscores?
I'm trying to extend the python.lang file so that it will make methods like __init__ highlighted. I've been trying to come up with a Regex that will match all __privateMethods().
The python.lang is a ...
3
votes
3answers
356 views
Gedit adds line at end of page
The answer to this must be somewhere but I'm not finding it -- can anyone help me understand why in Gedit, if I have a page of code there is no extra trailing blank line, but then when I do a file ...
3
votes
1answer
88 views
gedit underscore as a word_character
Is it possible to configure gedit to treat the underscore character as a word character?
Currently, it appears that the editor treats "two_words" as two separate words when selecting, instead of a ...
3
votes
2answers
2k views
“Column Mode” in gedit?
I'm transitioning from UltraEdit on windows to gedit on linux. So far, the experience is great (there's a lot here for a free tool), but there's one indispensable feature of UltraEdit I can't seem to ...
3
votes
7answers
535 views
What single plugin would you recommend for gedit?
I've just discovered the power of gedit thanks to all of the plugins that are available for it.
Edit > Preferences > Plugins
Which plugin could you not live without?
2
votes
1answer
43 views
Auto closing tags in gedit — can a man dream?
Top of the morning to y'all.
I recently switched to Debian and I'm finding gedit 3 to be a worthy replacement for notepad++.
I have one complaint though: I can't find a plugin which will close tags ...
2
votes
0answers
54 views
How to get all the hplugins for Gedit on Mac OSX 10.6.8
I've recently installed gedit on my macbook (os 10.6.8) , and I have managed to install a lot of really cool plugins that enhance it greatly. However when I look at the available list of plugins on ...
2
votes
0answers
82 views
Gedit in Windows creates multiple instances
I installed the latest version (2.30.1) of Gedit for Windows. And whenever I open files from explorer with gedit, it won't open as tabs in the current instance, instead it opens a new window for each ...
2
votes
2answers
72 views
Git false positives after Ubuntu upgrade
Started a Git repository under Ubuntu 9.10. Finally upgraded to 10.04. Current Git is 1.7.0.4.
Now when I edit a file (with gedit) that was last changed before the upgrade, then commit, the commit is ...
2
votes
1answer
96 views
Syntax highlighting for lex in gedit
I know i just need a file like /usr/share/gtksourceview-2.0/language-specs/javascript.lang. Where can i find a language definition like this for lex ?
2
votes
2answers
596 views
gedit 3 regex plugin
Has anyone gotten a regex plugin to work in gedit 3 (Fedora 15)? I have tried 2 plugins so far:
http://halfhourhacks.blogspot.com/2008/03/gedit-regular-expression-plugin.html
...
2
votes
1answer
495 views
How to make Gedit look like Textmate?
I want to make Gedit look like Textmate, and act like it too. I have read many tutorials on the net, but can't find an easy to follow guide. I am using Ubuntu 11.04 and would like to use it for Ruby ...
2
votes
2answers
198 views
Gedit, smart C syntax highlighting
I'm not much of a full-fledged IDE man. I like minimal, intuitive editors, and use the command-line for anything else.
I've been using Gedit for ages, and just wondered -- there's ONE feature I would ...
2
votes
2answers
150 views
Python - Debug running application
I'm trying to fix bugs from gedit plugins. Gedit uses C but some of its plugins are in Python. My computer is old and I cannot run an IDE. I've read about PDB (Python Debugger), but i cannot call the ...
2
votes
1answer
425 views
2
votes
2answers
528 views
Is it possible to use the Android SDK without using eclipse?
I'd like to develop for Android but I don't really like using an IDE for programming as I find them to be pretty cumbersome compared to a text editor and command console. Is there any way I can ...
2
votes
3answers
459 views
gedit plugin development in C
I'm Interested in writing gedit-plugins in C. I've checked http://live.gnome.org/Gedit/NewMDIPluginHowTo
...but haven't had any luck with it.
How can I get more information about writing gedit ...
2
votes
2answers
425 views
What tools are available to auto-format Ruby/Rails Code
I'm currently using GEdit with several plugins to do Ruby on Rails development. One thing I would like to have is a way to automatically format my source files (.rb, .*.erb, etc.) Ideally it would be ...
2
votes
2answers
571 views
How do I keep formatting when copying from gedit into open office?
I am editing octave files in gedit, and it does a nice job highlighting them. However, when I try to copy and paste the code into Open Office, it loses all formatting. Even when I try paste > special, ...
2
votes
5answers
264 views
Room for improvement on my Python code?
I'm working on a Gedit plugin using Python (and PyGTK) and I really havent' worked with Python much so I have no idea if I'm writing Pythonic code.
All of my own code is contained in __init__.py. ...
2
votes
4answers
2k views
Syntax highlighting in gedit not working automatically
I'm trying to use Ubuntu for Rails development and I'm liking gedit except the syntax highlighting does not seem to work with out me setting it for each file I open. Should it not recognize a .rb file ...
2
votes
3answers
2k views
Setup Gedit For C++ Development
I'm starting in C++ development, but i like to use Gedit for writing the files, but like for Ruby on Rails and many other languages, are some tools and configurations for Gedit that makes develop more ...
1
vote
1answer
41 views
Programmatically load/unload plugins and change settings in Gedit 3
We are building a plugin for Gedit 3 using python. The idea is to have preset configuration of plugins and configurations that you can load or unload.
The problem is that we cannot seem to find any ...
1
vote
1answer
49 views
Gedit - External Tools specify Current file
How do I specify the placeholder for the current in Gedit's manage external tools.
For example if I want this in my external tools what should i use?
perl -d:ptkdb my_current_file.pl
pertidy ...
1
vote
0answers
122 views
How to get gedit to auto-indent code
I'm trying to get gedit to auto-indent my code. The auto-indent check-box in preferences doesn't work. Is there a way to get gedit to auto-indent code?
(By the way, I only really care about C++ ...
1
vote
1answer
135 views
gedit 3 regex search replace plugin port
So i have been trying to install this plugin:
http://halfhourhacks.blogspot.com/2008/03/gedit-regular-expression-plugin.html
in gedit 3.2.1 but there seem to be some issues. I have modified the ...
1
vote
1answer
48 views
How to remove a menu item from Gedit from a plugin
I developed a plugin to replace some functionality in Gedit. This functionality is presented through one menu item.
How could I remove the current menu item to add a identical new one, except that ...
1
vote
0answers
208 views
gedit 3.2.1 File Browser Pane plugin slow and unresponsive
So i have never really had issues with the File Browser Plugin before but since updating to Ubuntu 11.10, the version of gedit i have is verion 3.2.1. In this plugin I have bookmarks set up for an ssh ...
1
vote
6answers
153 views
Block commenting in Gedit?
Is there a way to comment out a chunk of highlighted code?
I am programming in ruby, and I hate putting # on lines individually.
1
vote
3answers
149 views
Emacs inside of gedit?
After years of experimentation with editors, the fact is I prefer them as minimal as possible. I never use fancy features and the full-feature IDE's become bloated, heavy, and slow. Of course, when I ...
1
vote
0answers
56 views
What are drop targets in gedit's snippets?
There is a plugin for gedit to handle snippets. In the Snippets Manager under "Activation" for every snippet you can set the drop targets. There are some preformatted alternatives to choose between ...
1
vote
1answer
124 views
Syntax Highlighting: How Does Eclipse Do It So Fast?
I've developed a syntax highlighter in Java for Android and it's working well, but the problem is it can be slow with big files.
So I'm wondering how source code editors like Eclipse and Gedit ...
1
vote
2answers
181 views
1
vote
1answer
77 views
Strange git behavior, including git status error after adding directory
Stackoveflow. I'm a noob...so be gentle.
Question #1: After a new install, did a commit for README file no problem. Made changes to README with a text editor, made a new commit, and nada...the ...
1
vote
2answers
60 views
Ruby: Ubuntu Gedit Problem possible with Spaces
can someone tell me why this works in my gedit on ubuntu
def initialize (product_id,category_id,category_name)
but this does not. It thows a syntax error and says that I am missing a ")"
def ...
1
vote
2answers
239 views
Highlight BOTH matching braces into Gedit
Any way to highlight both braces on Gedit?, it's annoying when you have several braces joined and is not clear which one are you pointing.
Highlighting both braces would be a simple solution to know ...
1
vote
1answer
176 views
Import Python module with PyImport_ImportModuleEx for a gedit plugin
I'm learning Python and I try to use Python Markdown in a gedit plugin. Here's how my files are organized:
~/.gnome2/gedit/plugins/mytest.gedit-plugin
~/.gnome2/gedit/plugins/mytest/
...
1
vote
2answers
73 views
How to define an icon for a Gedit plugin written in Python
I am writing a Gedit plugin and created an icon for it as SVG (which of course can be exported to any format). How could I configure this plugin to show this icon in the plugin listing in Edit > ...