LiClipse is a set of plugins to enhance Eclipse and improve the overall Eclipse experience. It includes improved IDE theming, builtin editors for many languages (and a way to easily create new editors without delving into actual Java coding), usability improvements for all Eclipse editors, packaging of some common existing plugins and installers which are natively integrated into each platform.
Questions tagged [liclipse]
68 questions
0
votes
1 answer
How do I use Liclipse to write a ParaView script?
I've tried following the directions here without success. Here are some of my environment variables:
Path:
C:\Python34\;C:\Python34\Scripts;...;C:\Program Files (x86)\ParaView 4.3.1\lib\paraview-4.3\site-packages;C:\Program Files (x86)\ParaView…

GregNash
- 1,316
- 1
- 16
- 25
0
votes
1 answer
Prevent liclipse from replacing references to a renamed file
I've swapped from Eclipse to LiClipse.
An annoyance is: when I rename a file it goes through all my code and changes the reference to the renamed file to the new name.
I DO NOT want this behavior, since I usually rename the file to make a backup…

RightmireM
- 2,381
- 2
- 24
- 42
0
votes
1 answer
Run the script thats being edited in Liclipse, not the main from the configuration
I've been working with Eclipse for years, but its PyDev wasn't working on my new Mac...so I swapped to LiClipse.
In Eclipse, when I have an open file that I'm editing and click run...it runs the file that's open and visible in my editor. But…

RightmireM
- 2,381
- 2
- 24
- 42
0
votes
0 answers
clearing the screen windows 8.1
I've tried all the options below, listed in prior attempts to answer this question.
I also tried to get the Console screen dimensions, but couldn't get them.
If nothing has changed, or there is nothing I can do on windows 8.1 using PyDev - LiClipse…

Sam
- 1,659
- 4
- 23
- 42
0
votes
1 answer
Liclipse splitting editor window
How can we split editor window in Liclipse editor so that it shows two different file at the same time in two different tab ? Similar to vi-editor's -O options which is used like this
vi -O file1.txt file2.txt
Currently I see that the "Vertical…

Pranav
- 675
- 1
- 8
- 13
0
votes
1 answer
How do I change the indentation on LiClipse's JavaScript formatter?
I'm using LiClipse 1.4.0 and would like to configure the JavaScript auto-formatter (CTRL-SHIFT-F). Even though the editor tab spacing is 2, the formatter's spacing is 4. I've tried editing the YAML JavaScript config file inside the LiClipse…

joeforker
- 40,459
- 37
- 151
- 246
-2
votes
4 answers
stupid nube cant even do one simple code test
I decided recently that I want to start learning to code. I chose python as my first language because of it's versatility and Open Source connections. Now, of course to learn any programming language, first you have to be able to practice with it by…

Ester
- 29
- 1
- 1
- 11
-2
votes
2 answers
Best practice for using argument's class method
I am trying to figure out the solution for the following problem:
#ExampleA.py
class a:
def my_great_method_A(self):
pass
#ExampleB.py
def functionX(inst_a): #Argument 'inst_a' will be always ExampleA.py's class a.
…

Shuhei Kazuma
- 11
- 1