Questions tagged [jedi]

The JEDI (Joint Endeavour of Delphi Innovators) project is a large open-source library of Windows API translations, visual and non-visual components, and other useful classes and libraries.

163 questions
4
votes
1 answer

Delphi: JEDI TrayIcon hides all frames. Bug

I have a frame, two buttons and a JEDI TrayIcon (TJvTrayIcon, Version 3.40). Delphi XE. The first button: Frame11.Visible := true; Second: Frame11.Visible := false; When I try to minimize a window -> restore it from a system tray -> click the…
maxfax
  • 4,121
  • 10
  • 66
  • 117
4
votes
1 answer

Jedi - Python autocompletions (hints) not showing methods or suggestions

I'm currently working on Sublime Text 3 Using Jedi - Python autocompletions and to be specific it works with most basic things. However I use it like in this case with BeautifulSoup4 The main issue, is, not displaying properly completions for when…
Yono
  • 2,176
  • 2
  • 10
  • 25
4
votes
1 answer

JvDockTabPageControl: Show form caption in hint on tab mouseover

I have a number of forms tabdocked in a JvDocking Page Control, but the tabs are too small to display the entire form caption. Is there anyway to display a hint containing the tab text when the tab is hovered over? The closest I've gotten is a hint…
4
votes
2 answers

Emacs Jedi auto-complete not working on init

I installed jedi along with some other packages via el-get the other day, and initially it all worked great (auto-completion, popup menus etc). In the past few days, however, jedi has stopped working (i.e. auto-completion, popups and function…
orentago
  • 558
  • 1
  • 7
  • 13
3
votes
1 answer

Jedi VCS is not syncing one file

After losing hours for finding why on my machine the same code was beahving differently i realized that i had a non up to date file locally. Even if the JEDI Sync query returned "all files up to date". How is this possible? I didn't set any…
LaBracca
  • 13,941
  • 34
  • 129
  • 224
3
votes
1 answer

Is it possible to control how tabs are displayed in the JvDockServer component?

If you run the AdvanceDemo in the JVCL's JvDocking example code, with VSNetStyle selected, you can drag a second form onto the main form; a tab with the second form's title will be displayed. If you then drag a another form onto the same side of the…
Al C
  • 4,551
  • 5
  • 35
  • 63
3
votes
2 answers

How to config 'Completer.use_jedi' to 'False' in Juypter Notebook permanently

Every time a new jupyter notebook instance is opened, it requires %config Completer.use_jedi = False command to be run, before autocomplete functionality starts working. This is tiring every time, to config use_jedi to False before coding. kindly…
Santosh K
  • 327
  • 4
  • 10
3
votes
2 answers

Save/Load TObject(TPersistent) to XML

everybody. I'm trying to save my class: TA= class(TPersistent) private FItems: TObjectList; FOnChanged: TNotifyEvent; public constructor Create; destructor Destroy; override; ... procedure Delete(Index: Integer); …
Keeper
  • 457
  • 4
  • 13
3
votes
1 answer

Why use command M-x jedi:install-server in Emacs doesn't reply

I am trying to install Jedi for emacs26 using MELPA package by following instructions here --http://tkf.github.io/emacs-jedi/released/.I used pip3 to install 'jedi flake8 autopep8' and I also use M-x package-listto intstall jedi.But When I use M-x…
Lzzz
  • 31
  • 1
3
votes
1 answer

JEDI JclCompression extraction issues with latest 7z.dll

I have used JclCompression with the 32-bit version of 7z.dll 9.20 for quite a while and have recently tried to upgrade to a more recent version (16.04). With the update in 7z.dll versions, I am unable to extract Bzip2 archives or tarballs (.tgz),…
spurgeon
  • 1,082
  • 11
  • 31
3
votes
3 answers

How to reskin a Delphi 6 application?

I just received some artist rendered images of my Delphi Pro 6 application that I will use to overhaul the look and feel of it. The problem is of course that my application, like any other Delphi application, uses the VCL custom control library and…
Robert Oschler
  • 13,520
  • 17
  • 74
  • 209
3
votes
0 answers

spacemacs, anaconda, jedi/completion: Server error: ValueError('need more than 0 values to unpack',)

my python (2.7.12) code is very simple import os os. instead of autocompletion I get following code: Server error: ValueError('need more than 0 values to unpack',) but, the following code gives me correct autocompletion. import…
mat
  • 95
  • 8
3
votes
1 answer

JEDI Visual Component Library : JvAlarms component (a few questions)

I decided to try the JvAlarms component. So I did : procedure TForm1.Button1Click(Sender_TObject); begin jvAlarms1.Add.Name :=Edit1.Text; jvAlarms1.Add.Time :=…
user3351050
  • 368
  • 2
  • 11
3
votes
1 answer

jedi-vim doesn't find python2 dist-packages, but python3 yes

Jedi-vim does autocompletion for python3 dist-packages, but can't fnd python 2.7 dist-packages. I run my program using python 2 without problem. Everything else runs correctly. I found out that vim is running with python3. I'm using Ubuntu 16.04…
3
votes
1 answer

color schema of emacs auto-complete mode

I am using auto-complete + jedi in python mode And i am wandering how to change the color of the second column in the popup menu? the yellow one: "function:posix.closerange" also what't yellow popup window on the right side called? And how to…
otm
  • 577
  • 8
  • 20
1
2
3
10 11