Package Details: sublime-text-dev 4.4173-2

Git Clone URL: https://aur.archlinux.org/sublime-text-dev.git (read-only, click to copy)
Package Base: sublime-text-dev
Description: Sophisticated text editor for code, html and prose - dev build
Upstream URL: https://www.sublimetext.com/dev
Licenses: custom
Conflicts: sublime-text
Provides: sublime-text
Submitter: realitygaps
Maintainer: SunRed (edub4rt)
Last Packager: SunRed
Votes: 516
Popularity: 0.000018
First Submitted: 2011-11-10 18:32 (UTC)
Last Updated: 2024-04-08 21:00 (UTC)

Pinned Comments

SunRed commented on 2022-02-20 11:30 (UTC)

Please note that the dev branch of this software requires a license to be purchased from the website. If you want to support this software, please consider doing so.

You can use the stable branch available at sublime-text-4 or the official package for free.

SunRed commented on 2021-05-21 13:04 (UTC)

To cut down the amount of packages to be maintained and to decrease confusion, this package is now used for the 'dev' branch of Sublime Text that is kept up to date with the most recent version. Users who want to stay on the latest legacy versions or the most recent stable release should stick to the respective stable release packages (sublime-text-3, sublime-text-4) or use the official repos provided by Sublime Text.

Latest Comments

« First ‹ Previous 1 .. 16 17 18 19 20 21 22 Next › Last »

sender commented on 2012-02-18 21:18 (UTC)

The new icons are placed in /usr/share/icons/hicolor/<size>/apps. Remember that regenerating the icon cache for GNOME can be done with: gtk-update-icon-cache -f '/usr/share/icons/hicolor' @nagisa: can you explain or point to some docs on this switch?

nagisa commented on 2012-02-16 14:35 (UTC)

To integrate Sublime Text with Gnome better you should change ${BIN} "${@}" & to ${BIN} --class=sublime-text-dev "${@}" &

Bkmz commented on 2012-01-30 13:32 (UTC)

https://gist.github.com/1704400 I modified it to update with 2 executions of makepkg. And its work =) no needs to calculate md5 and others =)

<deleted-account> commented on 2012-01-20 08:11 (UTC)

Sublime Text is really awesome.Thank you for keeping this package updated.

sender commented on 2012-01-19 08:12 (UTC)

@stefanwilkens: fair point, but this assumes sublime-text and sublime-text-dev are not running side-by-side. What happens in this case when we implement your suggestion and pacman -Syu is run for example? Please discuss.

sender commented on 2012-01-19 08:03 (UTC)

The next submission will feature suggestions by @drizz and @tiger2wander. Suggestion: BIN=/opt/sublime-text/sublime_text ${BIN} "${@}" &

stefanwilkens commented on 2012-01-10 09:23 (UTC)

Hi, I'm building pluging packages for sublime for the AUR and I had a suggestion. can I suggest adding: provides=(sublime-text) and installing to /opt/sublime-text/ rather than /opt/sublime-text-dev/ ? This would make it possible to make a set of PKGBUILDS for the public plugins repositories for sublime that would work for both sublime-text and sublime-text-dev. If not, 2 PKGBUILDS would have to exist for every plugin package, which seems silly.

<deleted-account> commented on 2012-01-10 06:59 (UTC)

Should add quote for ARGS in /usr/bin/subl for file open with Nautilus contain white spaces. I was modified it like below: #!/bin/sh # Please note that Sublime Text 2 for some reason opens an empty instance # if the project you're trying to open is already open in another instance, # instead of just giving it focus. BIN=/opt/sublime-text-dev/sublime_text PID=$(pidof -o %PPID ${BIN}) ARGS="${@}" if [[ ${1:(-16)} == ".sublime-project" ]]; then ARGS="--project ${ARGS}" fi if [[ -n ${PID} ]]; then ${BIN} "${ARGS}" else ${BIN} "${ARGS}" & fi Thanks!