Sublime Forum

Dev Build 3133

#22

It seems it was your new installation of Sublime Text. Right always you install it, Sublime Text start re-indexing all your files. So, when it is not finished, you cannot use the Ctrl+R command. But soon as Sublime Text finish analyzing all your files, the Ctrl+R feature is available again.

While Sublime Text does not finish it, you will notice this on the status bar:

Source:

  1. $1721 Clicking on the index icon open multiple windows, which does not remember the last size
1 Like

#23

@addons_zz thanks for your explanations and animated movie.

1 Like

#24

Japanese input still broken on Linux.

2 Likes

#25

To someone who is not familiar with Japanese input, can you provide a link to an issue on https://github.com/SublimeTextIssues/Core/issues that describes the issue?

1 Like

#26

I couldnā€™t find a matching issue. The problem is with the standard Japanese IME on GNOME for CentOS and many other distros.

In Settings->Region & Language you can add ā€œJapanese (Kana Kanji)ā€ as an input source. Switching to this input source from the icon in the GNOME panel allows you to enter Japanese characters.

It works with GEdit, Emacs, GVim, Atom, Vscode, Brackets, GNOME Terminal, LibreOffice, etcā€¦ It does not work in Sublime Text. Sublime Text ignores the setting and enters standard roman characters.

0 Likes

#27
1 Like

#28

I have such error while trying to install the update from 3132.

Windows 10 Pro Build 15063

0 Likes

#29

I have this happen quite frequently on my work machine (which is Windows). I usually just download the latest version and install over the old one.

1 Like

#30

I am unfamiliar in general with input methods, but I was able to install SCIM for Japanese on Ubuntu 14.04. The current implementation works once youā€™ve committed the sequence (ctrl+space seems to be the default). We donā€™t currently implement preedit previews of the input.

I am not sure if there are other input methods that CentOS defaults to.

0 Likes

#31

I am using IBUS on CentOS. It doesnā€™t work at all.

In any case the preview is essential. Each sequence of key presses can map to many different characters. You need to see the preview to select the required characters.

0 Likes

#32

I am not familiar with IBUS. We implement handlers for the GTK IM signal ā€œcommitā€. Perhaps you need some bridge between IBUS and GTK, or something along those lines?

0 Likes

#33

@qwenzek, I am in a similar situation, but a linux noobā€¦ could you share the steps you used to install?

I guess I could just overwrite the existing folder in /opt/ but am worried that this wouldnā€™t be enough and would damage the existing installation.

Thank you!

0 Likes

#34

Your application needs to load the GTK immodule.

1 Like

#35

[quote=ā€œmattst, post:18, topic:28716ā€]
A bug has been introduced by either build 3132 or 3133 with respect to the APIā€™s set_view_index() method. It looks to me like a classic example of an off-by-one error.[/quote]

Thanks for the fix. :grinning:

0 Likes

#36

Thatā€™s what I did and it seemed to work fine.
Also I donā€™t think itā€™s a good practice because if the new version delete/rename a file it will be duplicated after the extract.
So I think you should delete the /opt/ folder of the old version then extract the new version.

But the .deb is still available: https://download.sublimetext.com/latest/dev/linux/x64/deb

0 Likes

#37

@gwenzek @aaandre

Firstly use the repository if possible. Once the repository has been installed ST can be updated with speed and ease with a single command (as below). Note that the command install means ā€œinstall or update if already installedā€.

sudo apt-get install sublime-text

SublimeHQ have updated the install instructions. I have added some (hopefully) helpful info in a thread.

If you need to install using a .deb file - do not manually delete the /opt/sublime_text/ folder. @gwenzek there will be no file duplications when installing using dpkg, the files from the old .deb file will all be removed and only the files from the new .deb file will be in /opt/sublime_text/.

Download the .deb file and install it with dpkg, e.g.

sudo dpkg -i sublime-text_build-VVVV_amd64.deb

As with apt-get the dpkg -i (long form is --install) command means ā€œinstall or update if already installedā€.

There arenā€™t really any circumstances when it is necessary for a Linux user to manually delete Root files as a means of uninstalling software and it is a very bad idea unless you really know what you are doing which -no offence- plainly you guys do not.

If you run into any problems feel free to ask me directly, click on Message on this page. Iā€™m a pretty experienced Linux user. HTH.

0 Likes

#38

I was talking about installing the .tar here. I agree that using the .deb you shouldnā€™t meddle with the system files.
But maybe thatā€™s neither the correct way to install the .tar though, Iā€™m really not used to update software like that.
And if I donā€™t use the apt repository it is because my corp desktop policy prevents me from it.

Anyway, thanks for the help, Iā€™m really not the best person to give Unix tips.

0 Likes

#39

I see. In your previous post you posted the .deb file url so I naturally assumed that was what was being installed / manually deleted.

0 Likes