473,513 Members | 2,708 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Can not download plugins for jEdit (help!!)

Hi all. I am trying to use jEdit, but can't seem to download
any plugins. I go to Plugin Manager, and select Download
options. I update the mirro and can see lots of servers.
I select the first (plugin central default) and say apply.
In the Update dialogues bottom window, I see a msg saying
"Dowloading plugin list from jedit.plugins.org but after
a couple seconds it disappears. Inveitably when I select
Console and the click install, it give me "An I/0 error
occurred (Connection refused: connect)

If anyone knows why i can't connect, in info about it would be
a big help.

Thanks in advance.....

Nov 9 '06 #1
12 3312
jEdit
Vim, it can handle all the things.
http://www.vim.org/

Nov 9 '06 #2
Ant


On Nov 9, 6:52 am, "BillJosephson" <billjoseph...@hotmail.comwrote:
....
If anyone knows why i can't connect, in info about it would be
a big help.
Sounds like the default mirror is down. Go to Utilities -Global
Options -Plugin Manager and click on "Update mirror list". Choose a
new mirror and try again. If that still fails, it may be that you need
to set up your proxy server properly.

Nov 9 '06 #3
Ant
Vim, it can handle all the things.http://www.vim.org/

I'm not convinced of that quite yet. jEdit's syntax highlighting seems
more robust (see SocketServer.py in the standard library for an example
- vim gets the highlighting of the first doc-comment wrong). I've also
not found anything like jEdit's Console plugin for vim. It's
interactive. You can run the current buffer in the console window. The
console interacts with an error reporting pane which allows you to
click on the error and it will take you to the appropriate line in the
code that the stack trace indicates.

The only thing I have found for vim (and it is specific to running
Python code) is the runscript.vim plugin, which merely allows you to
view the stdout from the script in a different buffer. It doesn't allow
you to interact (say you are writing a console based interactive
application for example) nor does it have all of those other features
I mentioned.

I'm very interested in other people's vim setup for Python coding
however, as I do use vim more than Python these days, mainly because I
have to use it a great deal on headless servers (jEdit would be no good
here of course) and I got fed up with adding artefacts such as
extraneous i's, o's and :w's into my code when working with jEdit ;-)
And it starts faster of course.

Nov 9 '06 #4
On 2006-11-09, Ant <an****@gmail.comwrote:
>Vim, it can handle all the things.http://www.vim.org/

I'm not convinced of that quite yet. jEdit's syntax
highlighting seems more robust (see SocketServer.py in the
standard library for an example - vim gets the highlighting of
the first doc-comment wrong).
Code inside strings, e.g., doctests, breaks the synchronization
code. I fixed this for myself by adopting the convention in my
code that all closing """ are at the end of a line, while opening
""" never are. Then I changed the synchronize declarations in
/syntax/python.vim to the following:

syn sync match pythonSync grouphere NONE '"""$'
syn sync maxlines=300

The above is no good for random Python code, though.

But in random Python code you can simply increase the number of
lines inspected as high as your machine can handle, as documented
in python.vim.
I've also not found anything like jEdit's Console plugin for
vim. It's interactive. You can run the current buffer in the
console window. The console interacts with an error reporting
pane which allows you to click on the error and it will take
you to the appropriate line in the code that the stack trace
indicates.
I haven't got that working in Vim, because I haven't been
irritated enough by its lack to try. Python's extremely verbose
error reports make designing errorformat a little tricky, but it
can be done, and the day may come soon.

The reason I haven't adapted quickfix mode to Python is that Vim
would hide most of the Traceback. I'd constantly be executing the
command to show the entire error message, so I've chosen to
eschew quickfix mode for Python code.

If there's some quickfix mode settings that solve these problems
I'd be happy to purloin it.
I'm very interested in other people's vim setup for Python coding
however, as I do use vim more than Python these days, mainly because I
have to use it a great deal on headless servers (jEdit would be no good
here of course) and I got fed up with adding artefacts such as
extraneous i's, o's and :w's into my code when working with jEdit ;-)
And it starts faster of course.
The default Python plugin provides the [[, ]] and [m, ]m commands
for jumping to the next function or method respectively. They are
a nice help once you're aware of them. There's a more powerful
plugin available on the internet, but it the code-jumps were the
main commands I wanted.

pytags should be in your Tools directory. I haven't found it
terribly useful, but in theory it's invaluable (my project is
piddly in size at the moment).

If you set shiftwidth to your preferred Python indent, then
indenting and unindenting code blocks is as easy as the < and >
commands.

--
Neil Cerutti
Nov 9 '06 #5
Ant


On Nov 9, 2:11 pm, Neil Cerutti <horp...@yahoo.comwrote:
....
""" never are. Then I changed the synchronize declarations in
/syntax/python.vim to the following:

syn sync match pythonSync grouphere NONE '"""$'
syn sync maxlines=300

The above is no good for random Python code, though.

But in random Python code you can simply increase the number of
lines inspected as high as your machine can handle, as documented
in python.vim.
I commented out the maxlines line, and uncommented the syn sync
minlines=2000 line, and that seems to have worked.
The reason I haven't adapted quickfix mode to Python is that Vim
would hide most of the Traceback. I'd constantly be executing the
command to show the entire error message, so I've chosen to
eschew quickfix mode for Python code.
Sounds interesting - I may take a look at it.
... default Python plugin provides the [[, ]] and [m, ]m commands
for jumping to the next function or method respectively. They are
a nice help once you're aware of them. There's a more powerful
plugin available on the internet, but it the code-jumps were the
main commands I wanted.
They sound good. I've been using the taglist.vim plugin for code
browsing which is pretty good for that sort of thing.
pytags should be in your Tools directory. I haven't found it
terribly useful, but in theory it's invaluable (my project is
piddly in size at the moment).
I'll take a look. A code navigation tool I presume?
If you set shiftwidth to your preferred Python indent, then
indenting and unindenting code blocks is as easy as the < and >
commands
Yes - I have that set up. Thanks for the tips :-)

Nov 9 '06 #6

Ant wrote:
Vim, it can handle all the things.http://www.vim.org/

I'm not convinced of that quite yet. jEdit's syntax highlighting seems
more robust (see SocketServer.py in the standard library for an example
- vim gets the highlighting of the first doc-comment wrong). I've also
not found anything like jEdit's Console plugin for vim. It's
interactive. You can run the current buffer in the console window. The
console interacts with an error reporting pane which allows you to
click on the error and it will take you to the appropriate line in the
code that the stack trace indicates.

The only thing I have found for vim (and it is specific to running
Python code) is the runscript.vim plugin, which merely allows you to
view the stdout from the script in a different buffer. It doesn't allow
you to interact (say you are writing a console based interactive
application for example) nor does it have all of those other features
I mentioned.

I'm very interested in other people's vim setup for Python coding
however, as I do use vim more than Python these days, mainly because I
have to use it a great deal on headless servers (jEdit would be no good
here of course) and I got fed up with adding artefacts such as
extraneous i's, o's and :w's into my code when working with jEdit ;-)
And it starts faster of course.

Ant:
Great. Can you help me get it?

Thanks.

Nov 9 '06 #7
Ant wrote:
I do use vim more than Python these days
What does that mean? Are you referring to all the setup involved with vim?
Nov 9 '06 #8

Ant wrote:
On Nov 9, 6:52 am, "BillJosephson" <billjoseph...@hotmail.comwrote:
...
If anyone knows why i can't connect, in info about it would be
a big help.

Sounds like the default mirror is down. Go to Utilities -Global
Options -Plugin Manager and click on "Update mirror list". Choose a
new mirror and try again. If that still fails, it may be that you need
to set up your proxy server properly.


Woo hoo! It worked! Now of course it was a dumb question to begin
with.

May I ask another quetion? I don't want to mess with lots of plugins
at this point. What are the minimum plugins to get a typical looking
IDE with a code window and output window and that lets me set
breakpoints and step through code?

Thanks a lot Ant, I appreciate your help.

Nov 9 '06 #9
Ant <an****@gmail.comskriver:
>Vim, it can handle all the things.http://www.vim.org/

I'm not convinced of that quite yet. jEdit's syntax highlighting seems
more robust (see SocketServer.py in the standard library for an example
- vim gets the highlighting of the first doc-comment wrong). I've also
I can't see that problem at all. Vim 7.0 standard win32 build and
6.4 on OpenBSD.

My vimrc hold and old rule that I'm not sure is needed or how it works
against the new standard python module:

:au BufEnter *.py :set smarttab smartindent \
cinwords="if,elif,else,for,while,def,try,rxcept,fi nally,class"

I have not yet seen any problenm from it but maybe it's time to remote
it soon.
/ Balp
--
http://anders.arnholm.nu/ Keep on Balping
Nov 9 '06 #10
Ant
May I ask another quetion? I don't want to mess with lots of plugins
at this point. What are the minimum plugins to get a typical looking
IDE with a code window and output window and that lets me set
breakpoints and step through code?
The Console plugin is a must (I think it depends on the ErrorList
plugin which is also very useful as I noted above). JPyDebug is an
interactive debugger - I have never used it mind, I usually rely on
print statements to debug stuff.

Nov 9 '06 #11
Ant


On Nov 9, 3:27 pm, John Salerno <johnj...@NOSPAMgmail.comwrote:
Ant wrote:
I do use vim more than Python these daysWhat does that mean? Are you referring to all the setup involved with vim?
Whoops! I mean I use vim more than jEdit these days!

Nov 9 '06 #12
On 2006-11-09, Anders Arnholm <An*********@Arnholm.nuwrote:
Ant <an****@gmail.comskriver:
>>Vim, it can handle all the things.http://www.vim.org/

I'm not convinced of that quite yet. jEdit's syntax highlighting seems
more robust (see SocketServer.py in the standard library for an example
- vim gets the highlighting of the first doc-comment wrong). I've also

I can't see that problem at all. Vim 7.0 standard win32 build and
6.4 on OpenBSD.

My vimrc hold and old rule that I'm not sure is needed or how it works
against the new standard python module:

:au BufEnter *.py :set smarttab smartindent \
cinwords="if,elif,else,for,while,def,try,rxcept,fi nally,class"
You shouldn't need that as long as the default plugin for Python
loads correctly. (except is spelled wrong by the way.)

--
Neil Cerutti
Women's Luncheon: Each member bring a sandwich. Polly Phillips will
give the medication. --Church Bulletin Blooper
Nov 9 '06 #13

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
6099
by: mattigiat | last post by:
Sorry for being such a newbie in this respect, but here's my question: I have Visual Studio, with VB6 ent., with msdn help installed. Is there any way to downgrade to just using the VB5 help, on...
1
7176
by: Dave | last post by:
Hi Everyone, I was wondering if anyone has ever successfully used SA-FileUp's download feature. I am being forced to change from "ASPSmartUpload" as the server I am moving everything to is...
1
2076
by: Surjit Madiwalar | last post by:
Hi, I want to get dialog box(open,save,cancel) for pdf file using asp(vbscript). Presently when i click on pdf link on the site..the pdf document opens in the browser. I have used the below...
0
1559
by: mizi | last post by:
I am writing an ASP page for downloading some files, such as jpg, doc which are known MIME type. I want to force user save these files through a "file download" dialog instead of open them on the...
4
21803
by: Ali | last post by:
I need a functionality where my clients download Excel files and after they do, I do some processing. Downloading is easily achieved using a anchor or hyperlink tag, but that does not give me the...
0
3270
by: CodeMotion | last post by:
I have access to an internet directory and files will be placed in this directory periodically. I am writing a service to poll that directory and download the files for processing. I have figured...
1
1094
by: shawn_vandenberg | last post by:
hi there i have the following bit of code that downloads/uploads documents from a sql database. the problem i have is when i download an image for example and look at it in notepad i see the...
1
2390
by: ar123456 | last post by:
Dear Sir I want to know where can I find and download Visual Basic 6.0 help file, does it need MSDN Library or not? and if it need, where can I download MSDN Library for Visual Studio 6.0 ? ...
4
1815
by: mastahyeti | last post by:
A client needs to have download links sent to customers automatically after purchases. The links must expire after three days. I would prefer not to have the files be stored in a static location that...
0
7259
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
7158
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
1
7098
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
5683
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
5085
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
3232
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
3221
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
798
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
455
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.