]> jEdit Community - issues https://community.jedit.org A place for jEdit users to get help with problems and share plugins, macros, and other tools for programming with jEdit. en Column Ruler 1.0.3 things zero = +4 https://community.jedit.org/?q=node/view/37917 ------<br /> For jEdit 5.2.0, Column Ruler 1.0.3<br /> <br /> With the insertion point at the leftmost "zero" position in the editor window, Column Ruler 1.0.3 places the red position indicator at position four.<br /> <br /> Double-clicking Column Ruler position zero offers the user to place a mark at minus-4.<br /> <br /> Screenshot available on request<br /> <br /> Cheers & thanks,<br /> Riley<br /> SFO Thu, 20 Aug 2015 23:52:51 +0000https://community.jedit.org/?q=node/view/37917Column Ruler https://community.jedit.org/?q=node/view/ n/a Sat, 20 Apr 2024 22:37:27 +0000https://community.jedit.org/?q=node/view/ https://community.jedit.org/?q=node/view/ n/a Sat, 20 Apr 2024 22:37:27 +0000https://community.jedit.org/?q=node/view/ https://community.jedit.org/?q=node/view/ n/a Sat, 20 Apr 2024 22:37:27 +0000https://community.jedit.org/?q=node/view/ https://community.jedit.org/?q=node/view/ n/a Sat, 20 Apr 2024 22:37:27 +0000https://community.jedit.org/?q=node/view/ Plugin fails to parse trees with more than one top level https://community.jedit.org/?q=node/view/4878 Consider the following outline:<br /> <br /> A<br /> rtrtrt<br /> tarstrt<br /> artrat<br /> <br /> B<br /> ttrtratrs<br /> <br /> C<br /> ratrtrtr<br /> <br /> I expec to see on the sidekick (at level 1):<br /> A<br /> B<br /> C<br /> <br /> <br /> Instead I get<br /> A<br /> rtrtrt<br /> B<br /> C<br /> <br /> Plugin fails to parse a any tree with more than one top-level item.<br /> It thinks that once you indent, there's no going back one level <img src="misc/smileys/smile.png" border="0" title="Smiling" alt="Smiling" /> Wed, 07 Sep 2011 11:04:46 +0000https://community.jedit.org/?q=node/view/4878Outline Please enhance ProjectViewer to allow multiple open projects https://community.jedit.org/?q=node/view/4866 Hi !<br /> <br /> I just made an additional comment to:<br /> https://sourceforge.net/tracker/index.php?func=detail&aid=2965024&group_id=588&atid=997936<br /> <br /> Is there any chance, that - some day <img src="misc/smileys/wink.png" border="0" title="Eye-wink" alt="Eye-wink" /> - someone<br /> has a look onto it and give reasonable feedback??<br /> <br /> If I see, what has changes in the meantime, may I ask: "Is<br /> JEdit dead" ???<br /> <br /> Thanks a lot and<br /> br++mabra<br /> <br /> <br /> Hello!<br /> <br /> In real world, one works usually with multiple projects at "the same time" and there are a lot of situations, where you generalize work from one or two projects into a new one [into a library, for example]. Additionally, such "parallel open" behavior would really add nice other features to work with:Say, bundle all my daily note-files together into a project, so I can access them all at one with "a single click".<br /> I would prefer to allow the ProjectViewer to allow this. This would be - from my perspective - the greatest enhancement to the JEdit plugins ever!<br /> <br /> Thanks a lot!<br /> <br /> --mabra Fri, 12 Aug 2011 20:44:04 +0000https://community.jedit.org/?q=node/view/4866Widgets mysql tables problem https://community.jedit.org/?q=node/view/3728 I just figured out that there is a problem in table definition... actually, mysql script used to create tables contains some odd field name (eg: "index") and mysql report an error. If it's correct it's necessary to change db init script and tables references in the code. Fri, 02 Nov 2007 00:33:49 +0000https://community.jedit.org/?q=node/view/3728XP Tracker Please create a feature to allow community members to monitor forum blogs and delete fake/spam users https://community.jedit.org/?q=node/view/3229 The tons of chinese comment spam is wrecking the usefulness of JEdit's community site. Here are some ideas (not knowing anything about Drupal) how to sort this out:<br /> <br /> 1) Community self-policing: allow/invite some users somehow (loyal, longtime, frequent posters, ask who is interested?) to volunteer to police the community site. Limit capability only to delete posts, or report a user abusing the site (this will prevent misuse by volunteers!). Then, when users or posts are marked as requiring deletion or something, another group agrees, or the admin has final say or something like that.<br /> <br /> Of course, this needs to be done in such a way that the same robots that create accounts and post content do not create volunteer accounts!<br /> <br /> 2) Put rel="nofollow" or whatever it is, in the anchor tag of html posts, so that spammers have no need to try and create fake accounts. They are just trying to increase their links so that search engines will follow them.<br /> <br /> Drupal must have some comment spam plug-in surely?<br /> <br /> Not addressing this for so long is creating a negative impression amongst users, and losing the value of this open-source project... JEdit itself is excellent, but its natural support has to be good too. Sun, 19 Nov 2006 18:27:46 +0000https://community.jedit.org/?q=node/view/3229 In firefox, drop downs are not legible. They are close to zero width. Simple CSS fix. https://community.jedit.org/?q=node/view/3228 The community web site, for ages, has had drop downs that cannot be read, because their width is screwed up.<br /> <br /> The problem is by the following CSS rule (around line 38 of style1.css)<br /> <br /> .box * {<br /> max-width: 100%; /* make sure textarea's and inputs do not overflow the containing box */<br /> }<br /> <br /> The * makes EVERYTHING have this max-width, and it is not needed.<br /> <br /> Removing it sorts it out. If you really want this just for text areas and inputs, then use this:<br /> <br /> .box textarea, .box input {<br /> max-width: 100%; /* prevent overflow of the containing box */<br /> }<br /> <br /> This is critical, for it prevents using the web site effectively under Firefox (which I imagine is a LARGE audience for this site) because you can't read the drop downs. User participation will hopefully increase when this is done. Sun, 19 Nov 2006 18:22:28 +0000https://community.jedit.org/?q=node/view/3228 Caret Guide Colour should be selectable https://community.jedit.org/?q=node/view/3010 I like the idea of the caret guide (it helps see alignment in block structured code), but I would like to make its colour customizable, so that I can make the colour nearly the same as the background. As it is right now, the colour of the caret guide is very different from my choosen text area background, and it is very distracting to always see that big vertical line moving over the text area while one is typing. If I could choose the colour by myself, I would use one which is less obnoxious. Thu, 14 Sep 2006 08:43:30 +0000https://community.jedit.org/?q=node/view/3010Column Ruler postgresql.Driver not found https://community.jedit.org/?q=node/view/2424 Hi,<br /> <br /> I use Win2k SP4, jEdit 4.2final, PostGreSQL 8.0.3.<br /> <br /> DB Terminal Plugin does not connect to my PostGreSQL-DB showing the error-message cited in the subject.<br /> <br /> I have tried postgresql-8.0-312.jdbc3.jar and postgresql-8.1dev-401.jdbc3.jar in \jEdit\jars.<br /> <br /> I will be greatful for any hints.<br /> <br /> payx Fri, 30 Sep 2005 06:51:46 +0000https://community.jedit.org/?q=node/view/2424DB Terminal McKoi, HSQL Database Engine https://community.jedit.org/?q=node/view/1497 Please, add support for this databases. Wed, 21 Jul 2004 11:53:00 +0000https://community.jedit.org/?q=node/view/1497DB Terminal Oracle driver - bad package name https://community.jedit.org/?q=node/view/1496 In Oracle.java, line 13:<br /> <br /> super("Oracle", "oracle", "oracle.jdbc.Driver.OracleDriver");<br /> <br /> need correct (see content file classes12.zip)<br /> super("Oracle", "oracle", "oracle.jdbc.driver.OracleDriver"); Wed, 21 Jul 2004 11:49:35 +0000https://community.jedit.org/?q=node/view/1496DB Terminal More actions https://community.jedit.org/?q=node/view/1330 more actions should be defined Fri, 14 May 2004 19:04:00 +0000https://community.jedit.org/?q=node/view/1330Column Ruler Task details https://community.jedit.org/?q=node/view/1292 add a detailed view of tasks which displays time spent by each developer as well as a better description of the task. Wed, 28 Apr 2004 05:01:00 +0000https://community.jedit.org/?q=node/view/1292XP Tracker Renaming developers https://community.jedit.org/?q=node/view/1291 need a way to rename developers Wed, 28 Apr 2004 04:59:00 +0000https://community.jedit.org/?q=node/view/1291XP Tracker Overview/outline https://community.jedit.org/?q=node/view/1288 A tree which shows the whole project with all subunits Wed, 28 Apr 2004 04:06:00 +0000https://community.jedit.org/?q=node/view/1288XP Tracker Right align numeric fields https://community.jedit.org/?q=node/view/1002 use meta data to find numeric columns Tue, 03 Feb 2004 21:59:00 +0000https://community.jedit.org/?q=node/view/1002DB Terminal jEdit Community now over 200 members https://community.jedit.org/?q=node/view/277 As our base of users increases, we hope to receive more contributions of news items, articles and downloads to share with everyone. There is an enormous amount of knowledge and sophistication among so many of our users. It would be terrrfic if you could spend a little time sharing it with others online. That's why we called it "jEdit Community". <br /> <br /> As always, let us know if there is something you want to see added (or subtracted!) from the site, and especially if you would like to contribute content. Fri, 26 Oct 2001 21:13:00 +0000https://community.jedit.org/?q=node/view/277