Sublime text для windows xp

Как установить Sublime Text 3

Для начала нужно определиться с тем, как у вас операционная система, на данный момент саблайн выпускается под 3 ОС:

  1. OS X для компьютеров apple;
  2. Windows 32 (86) и 64);
  3. Linux repos (32 и 64).

Далее идет стандартная установка:

  1. Нажимаем Запустить (скрин 1/6);
  2. next (скрин 2/6);
  3. Выбираем куда хотим установить и снова next (скрин 3/6);
  4. Ставим галочку add to explorer context menu, это нужно, что бы кликнув по файлу правой кнопкой мыши мы могли: открыть с помощью -> Sublime Text 3 (скрин 4/6);
  5. install (скрин 5/6);
  6. Все, программа установлена (скрин 6/6)!

Инструкция по установке Sublime Text 3 (см 6 скринов)

Настройка редактора

При открытии sublime у разных людей будут разные эмоции, ведь как говорится «на вкус и цвет товарища нет», тоже самое и здесь. Но редактор можно идеально подстроить под себя, этим и займемся.

Для начала можно выбрать более комфортную для вас тему. Делается это через Preferences — Color Scheme. Но на этом весь процесс настройки не заканчивается.

Более подробно настроить Sublime Text 3 можно перейдя в раздел настройки Preferences — Settings. Теперь возможностей куда больше. И так, левое окно с тонной текста трогать не нужно, это настройки по умолчанию, а вот правое окно нужно для кастомизации.

Кастомизацию можно провести методом добавления своих собственных настроек. Вот настройки, которые можно применить:

  • color_scheme — тема sublime text 3. Кстати, можно выбрать дефолтные, а можно загрузить собственные, делается это путем занесения темы в папку Packages/Color Scheme — Default/.
  • font_face — шрифт текста. Можно установить любой шрифт, который есть у вас в операционной системе. Имеющиеся шрифты можно посмотреть в папке fonts, найти её можно через поиск в меню “пуск”, либо посмотрите их через любой текстовый редактор.
  • font_size — размер шрифта. Размер можно задать целым числом или дробным.
  • font_options — Это настройки начертания текста. Можно поставить «no_light», либо «no_bold».
  • word_separators — Помогает разделять слова.
  • line_numbers — Самая обычная нумерация строк кода. Можно настроить.
  • gutter — С помощью этой настройки выбираете, скрывать ли панель с номерами строк и закладками.
  • margin — От панели с нумерациями можно отодвинуться с помощью этой команды.
  • fold_buttons — Можно навести курсор на канавку и увидеть треугольные стрелки, с помощью которых можно скрывать или показывать код между фигурными скобками. Так вот, здесь их можно включить или выключить.
  • fade_fold_buttons — Все треугольные стрелки не будут скрываться, если через эту команду поставить значение false.

Вот такие настройки, с ними можно долго экспериментировать, но теперь перейдём к пункту настройки клавиш.

Список полезных плагинов

Модификации могут в несколько раз упростить работу, сделать код более понятным и прочее. Также они могут повышать скорость работы. Список таких плагинов собран внизу.

Emmet

Очень полезный плагин для верстальщиков, так как делает из сокращенных выражений на html/css полные фрагменты кода. Например, если написать html и нажать tab, то он создаст полноценную разметку для html документа. Кстати, в прошлом плагин назывался Zen coding.

JavaScript & NodeJS Snippets

Тот же emmet, только для JavaScript и NodeJS. Также повышает скорость работы. Пример работы, document.querySelector(‘selector’); можно не вводить, а вести всего лишь два символа qs, после нажать кнопку табуляции и всё.

Git

Наверно уже поняли из названия, о чем плагин. Верно, он позволяет работать с системой git. Этот плагин сэкономит немалое количество времени, хотя бы потому, что вам не нужно бегать от sublime до git и наоборот, так как всё это можно делать в редакторе. В плагине есть отличные автокомплит, который вызывается методом вписания -add. Так же нельзя не упомянуть про команду quick, которая добавляет изменения и коммитит их.

GitGutter

Данный плагин отслеживает изменения в коде, а также даёт просмотреть статус самого файла. Для удобства подсвечивает измененные строки коммитом.

Sidebar Enhancements

Благодаря этому плагину можно сделать свой левый сайдбар более многофункциональным и полезным. Есть очень много полезных фишек, и одна из них, это «открыть в браузере»‎.

ColorPicker

Небольшое отдельное окно для выбора цвета. Мелочь, но пригодится. Кстати, цвет можно выбрать прямо на экране с помощью инструмента «пипетка». Цвета можно выбирать из палитры в hex-формате.

EditorConfig

Плагин для этакой кроссплатформенности. Плагин позволяет иметь файлы для настроек сразу нескольких редакторов кода. Такие файлы хранят в себе информацию о различных конфигурациях.

Placeholders

В sublime text 3 можно добавлять текст lorem-ipsum. Плагин Placeholders пошёл дальше, теперь можно вставлять не только текст, но и макетные изображения, а также таблицы, списки, формы.

DocBlockr

Этот плагин позволяет крайне быстро делать описание к функциям. Он создает закомментированную область, в которой можно описать функции, возвращаемые значения, переменные и их типы.

Floobits

Позволяет работать сразу нескольким разработчикам в одном коде. И это можно делать в разных редакторах, таких как Vim, Emacs, SublimeText IntelliJ IDEA.

SublimeCodeIntel

Расширение для редактора, которое позволит намного быстрее разобраться в коде. Если нажать на имя функции, то можно попасть к описанию этой самой функции.

Colors

Colors in color schemes may be specified using one of seven formats:

  • Hex RGB:
    A followed by six hex characters, with the first
    two specifying the red channel, second tow the green channel and
    the final two the blue channel. Red is written as
    . An abbreviated form is available when each
    of the three pairs use the same value for both characters. Red
    is written as .
  • Hex RGBA:
    Same as Hex RGBA, but with an extra pair of hex characters at
    the end to specify the alpha channel. Red with 67% opacity is
    written as . The abbreviated form would
    be .
  • RGB functional notation:
    A function named that accepts three integers in
    the range 0 to 255. The first integer specifies the red channel,
    the second the green channel and the third the blue channel.
    Red is written as .
  • RGBA functional notation:
    Identical to the RGB function format, except the name of the
    function is and a fourth parameter is added
    accepting a value from to
    specifying the alpha channel. Red with 50% opacity is written
    as .
  • HSL functional notation:
    A function named that accepts three values.
    The first is an integer in the range to specifying the
    hue. The second is a percentage specifying the saturation. The
    third is a percentage specifying the lightness. Red is written
    as .
  • HSLA functional notation:
    Identical to the HSL function format, except the name of the
    function is and a fourth parameter is added
    accepting a value from to
    specifying the alpha channel. Red with 50% opacity is written
    as .
  • HWB functional notation 3181:
    A function named that accepts three or four values. The first is an integer in the range to specifying the hue. The second is a percentage specifying the percentage of white mixed in. The third is a percentage specifying the black mixed in. The optional fourth parameter is a value from to that controls the opacity. Examples include: and .
  • Named:
    . Please note
    that while some share names with X11 named colors used in
    .tmTheme files, the actual colors
    tend to differ.

Additionally, colors may be specified as a
, and then referenced via the syntax
. Variable references are
particularly useful when combined with the
and the supported
, , ,
, and adjusters.

Packages — 7653 copies sold!

Sublime Text Power User Book

  • This book will teach you everything you need to know to completely harness the power of Sublime Text
  • 25 Chapters / 220 pages
  • Read on any device — DRM free PDF and EPUB
  • Free Updates when new functionality and packages come out
  • Added HD video tutorials visually detailing the best features, workflows and packages the editor has to offer
  • 20 High definition videos in total
  • Exclusive access to online Sublime Text talk on some of the best tips, tricks and packages + Q&A

You are the 7653th to learn!

Book + Video Package

  • This book will teach you everything you need to know to completely harness the power of Sublime Text
  • 25 Chapters / 220 pages
  • Read on any device — DRM free PDF and EPUB
  • Free Updates when new functionality and packages come out
  • Added HD video tutorials visually detailing the best features, workflows and packages the editor has to offer
  • 20 High definition videos in total
  • Exclusive access to online Sublime Text talk on some of the best tips, tricks and packages + Q&A

Join 7653 Others in Mastering Sublime

Установка редактора

Sublime Text 3 спокойно поддерживается на:

  • linux
  • MacOs
  • Windows

Windows. Установка

После выбираете путь, куда собираетесь скачать установщик. После заходите к установщику, и выбираете уже то место, куда будет установлена программа. Весь процесс займет минут 5-10.

Linux. Установка

Установить редактор на дистрибутивы linux будет уже не так просто, поэтому просто повторяйте за инструкцией ниже.

  1. Необходимо использовать командную строку, чтобы установить пакеты редактора sublime text 3. Для установки необходимо ввести следующую команду: sudo add-apt-repository ppa:webupd8team/Sublime-Text-3
  2. После необходимо обновить уже установленные пакеты. Делается это тоже с помощью команды: sudo apt-get update
  3. Ну и последний шаг, сейчас нужно установить хранилище Sublime Text 3. Команда: sudo apt-get install Sublime-Text

Готово, если все шаги выполнены правильно, то вы сможете увидеть в списке программ Sublime-Text.

OS X. Установка

Теперь, что касается установки на Мак.

  1. Загружаете файл с расширением .dmg.
  2. Открываете его и переносите в папку «приложения».
  3. Запускаете программу.

Как видите, ничего сложного в установке нет. Ну а теперь, когда Sublime установлен, нужно его настроить.

End Result

The merge commit that introduced OpenGL came in at just under 9000 lines of code. After fixing a long initial wave of bugs it’s been fairly stable since the release of Sublime Merge 2.

As you can see below, in its current state OpenGL rendering scales really well to higher resolutions. Even with a low-end dedicated GPU we’re now faster at 4k/8k with hardware acceleration than at 1080p without, and are easily within the 16ms budget for a 60hz monitor.

Hardware 1366×768 1080p 1440p 4k 8k
Ubuntu 20.04 CPU (2990wx) 5ms 6ms 17ms
Ubuntu 20.04 AMD RX560 3ms 3ms 3ms
macOS 11.1 CPU (5250U) 5ms 12ms 30ms
macOS 11.1 Intel HD 6000 5ms 9ms 18ms
Windows 10 CPU (9900k) 7ms 21ms
Windows 10 2080ti 3ms 3ms

kind Tuple 4050

Metadata about the kind of a symbol, , or . Controls the color and letter shown in the «icon» presented to the left of the item.

Options include pre-constructed combinations, or completely custom values.

Pre-contructed options include:

  • When there source of the item is unknown – the default.Letter: none, theme class:

  • When the item represents a keyword.Letter: , theme class:

  • When the item represents a data type, class, struct, interface, enum, trait, etc.Letter: , theme class:

  • When the item represents a function, method, constructor or subroutine.Letter: , theme class:

  • When the item represents a namespace or module.Letter: , theme class:

  • When the item represents a definition, label or section.Letter: , theme class:

  • When the item represents a markup component, including HTML tags and CSS selectors.Letter: , theme class:

  • When the item represents a variable, member, attribute, constant or parameter.Letter: , theme class:

  • When the item contains a snippet.Letter: , theme class:

Custom kind information may also be passed, via a 3-element tuple, in the following format:

  1. A kind id, which controls the theme class used to contain the letter:
    • When there source of the item is unknown

    • When the item represents a keyword

    • When the item represents a data type

    • When the item represents a function, method, constructor or subroutine

    • When the item represents a namespace or module

    • When the item represents a definition, label or section

    • When the item represents a markup component, including HTML tags and CSS selectors

    • When the item represents a variable, member, attribute, constant or parameter

    • When the item contains a snippet

  2. A unicode string containing a single unicode character. This is shown as an «icon» to the left of the .
  3. An optional unicode string to describe the kind, shown in the detail pane at the bottom of the auto-complete window, or via tooltip when hovering over the «icon».

For and objects, a custom tuple may also use one of the following kind ids, which are pulled from the user’s global color scheme. These are intended to help build semantic user interactions, such as using green for «Yes» and red for «No».
4095

Интерфейс

На самом деле, это не такая уж незначительная деталь, как может показаться на первый взгляд. Если вы пользуетесь инструментом большую часть рабочего дня, в нем должно радовать все. Не только скорость, возможности и удобство, но и эстетическая часть, тоже должна быть в порядке.

Подсветка ситаксиса

Это самое первое, на что обращаешь внимание в любом редакторе. Sublime Text по-умолчанию поддерживает огромное количество языков и предлагает на выбор около 20 цветовых схем

Полноэкранный режим

В этом режиме рабочая область программы занимает весь экран. Очень полезно, если вы хотите, чтобы вас ничего не отвлекало. По настоящему функцию можно оценить когда подключено несколько мониторов. На одном экране редактор, на втором рабочий проект и больше ничего!

Миникарта

Этого не встречал еще ни где. В узкой колонке миникарты умещается примерно 5-6 экранов, что позволяет быстро перемещаться по коду. Это не замена и не аналог закладок, а просто еще один удобный способ навигации.

Мультипанели

Еще одна особенность, присущая далко не всем редакторам, это возможность параллельно работать с несколькими файлами в одном окне. Порой, это намного удобнее чем несколько независимых окон.

Автосохранение

Для того, чтобы не нажимать «Сохранить» каждый раз, когда вам необходимо проверить внесенные изменения, в Sublime Text предусмотрена функция автосохранения. Редактор будет выполнять за вас эту операцию каждый раз, когда окно программы или вкладка с открытым файлом потеряют фокус.

Class sublime.Region

Represents an area of the buffer. Empty regions, where a == b are valid.

Constructors Description
Region(a, b) Creates a Region with initial values a and b.
Properties Type Description
a int The first end of the region.
b int The second end of the region. May be less that a, in which case the region is a reversed one.
Methods Return Value Description
begin() int Returns the minimum of a and b.
end() int Returns the maximum of a and b.
size() int Returns the number of characters spanned by the region. Always >= 0.
empty() bool Returns true iff begin() == end().
cover(region) Region Returns a Region spanning both this and the given regions.
intersection(region) Region Returns the set intersection of the two regions.
intersects(region) bool Returns True iff this == region or both include one or more positions in common.
contains(region) bool Returns True iff the given region is a subset.
contains(point) bool Returns True iff begin() <= point <= end().

Обзор SublimeText

Автором называют некоего Джона Скиннера. Разработка началась в ноябре 2007 года, причём было объявлено о том, что поставлена цель «создать лучший текстовый редактор всех времён и народов». Первая версия вышла 18 января 2008 года, вторая в 2011, третья в 2013 году. К 2018 году Скиннер со товарищи быстро сориентировались в тенденциях рынка и сосредоточились на Python, накидав много приятных возможностей для программистов «на змее».

Изначально в качестве целевой аудитории подразумевались разработчики, а потому в программе была предусмотрена проверка синтаксиса для множества популярных языков программирования. Это C, C++, C#, CSS, D, Dylan, Erlang, HTML, Groovy, Haskell, Java, JavaScript, LaTeX, Lisp, Lua, Markdown, MATLAB, OCaml, Perl, PHP, Python, R, Ruby, SQL, TCL и XML. Можно подключать плагины и для других языков.

Программа выполнена с суровым интерфейсом без кнопок и декоративных элементов, что позволяет на 100% использовать экранное пространство для дела. Экран можно разбить на несколько рабочих областей. Например, слева открывать файл html, а справа css и параллельно с ними работать. Отдельный плюс – можно открывать не отдельные файлы, а целые каталоги и работать в них. Далее мы подробно рассмотрим, что к чему, на примере нашего проекта.

Подсвечивается всё очень красиво, по дефолту установлена приятная для глаза тёмная тема с контрастным выделением. Её ещё очень любят показывать в фильмах и ТВ-передачах, когда нужно снять «что-то о программистах».

Для установки, удаления и настройки плагинов применяется менеджер пакетов. Настраивается редактор довольно специфично – для этого нужно открывать и редактировать файл настроек. Для этого нажимаете в меню «Preferenses —>Settings», после чего можно будет увидеть расположение файла настроек.

И, пожалуй, самая большая вишенка на торте – возможность мультиколонного выделения.

Вы просто ставите курсор в нужное место, затем зажимаете шифт и правую кнопку мыши и ведёте мышь вверх или вниз. Курсоры появляются в нескольких местах, и вы можете вводить символы или удалять текст сразу в колонке. Другой вариант – можно создать дополнительные курсоры в любом месте «Ctrl + клик мыши».

Недостатки – это, как обычно, обычно оборотные стороны достоинств. Профессионалы скажут, что Sublime не дотягивает до полноценной IDE и будут правы. Новичкам покажется жутковатым способ настройки через JSON. Любителям офисных программ будет скучновато без красивых кнопок в интерфейсе. Кого-то будут раздражать периодические призывы купить программу, а кому-то не понравится необходимость работы со сторонними плагинами. Тем не менее, как показывает опыт, для разработки сайтов средней и малой сложности SublimeText вполне годится.

Топ 5 плагинов для Sublime Text 3

1. Emmet

Emmet — плагин, позволяющий сделать отображение кода более удобным. Здесь используются сочетания клавиш. К примеру, «html + tab» создает каркас документа, а «div.wrapper + tab» превратится в полноценный код:

2. JavaScript & NodeJS Snippets

Этот плагин представляет собой коллекцию сокращений снипсетов для JavaScript. Длина набираемого текста с помощью подсказок правда уменьшается! К примеру, вместо набора «document.querySelector(‘selector’);» можно просто набрать «qs + Tab».

3. Advanced New File

Зачем искать место для нового файла в неудобном дереве каталога? Данный плагин позволит быстро и эффекстивно ввести нужные данные, и файл будет создан буквально за пару нажатий клавиш!

4. Git

Название этого плагина говорит само за себя: вы сможете выполнять все необходимые действия в рамках Git’а, не выходя из редактора!

5. GitGutter

Этот плагин позволит пользователю не только обращаться с обычными командами Git, но и работать с изменением версий: отлавливать их, просматривать, сравнивать — и все в режиме реального времени.

Appendix: CSS Colors

aliceblue antiquewhite aqua aquamarine azure beige bisque black blanchedalmond blue blueviolet brown burlywood cadetblue chartreuse chocolate coral cornflowerblue cornsilk crimson cyan darkblue darkcyan darkgoldenrod darkgray darkgreen darkgrey darkkhaki darkmagenta darkolivegreen darkorange darkorchid darkred darksalmon darkseagreen darkslateblue darkslategray darkslategrey darkturquoise darkviolet deeppink deepskyblue dimgray dimgrey dodgerblue firebrick floralwhite forestgreen fuchsia gainsboro

ghostwhite gold goldenrod gray green greenyellow grey honeydew hotpink indianred indigo ivory khaki lavender lavenderblush lawngreen lemonchiffon lightblue lightcoral lightcyan lightgoldenrodyellow lightgray lightgreen lightgrey lightpink lightsalmon lightseagreen lightskyblue lightslategray lightslategrey lightsteelblue lightyellow lime limegreen linen magenta maroon mediumaquamarine mediumblue mediumorchid mediumpurple mediumseagreen mediumslateblue mediumspringgreen mediumturquoise mediumvioletred midnightblue mintcream mistyrose moccasin

navajowhite navy oldlace olive olivedrab orange orangered orchid palegoldenrod palegreen paleturquoise palevioletred papayawhip peachpuff peru pink plum powderblue purple rebeccapurple red rosybrown royalblue saddlebrown salmon sandybrown seagreen seashell sienna silver skyblue slateblue slategray slategrey snow springgreen steelblue tan teal thistle tomato turquoise violet wheat white whitesmoke yellow yellowgreen

Инструменты Sublime Text

Sublime Text предлагает множество функций, которые упрощают компиляцию кода.

  • Goto Anything — это удобная функция, которая позволяет легче получать доступ к файлам. Для перехода к аспектам скомпилированного кода, таким как символы, строки или слова, требуется всего несколько действий.
  • Сопоставление скобок — это функция, которая позволяет быстро определить неправильное сопоставление. Редактор напрямую выделяет соответствующие наборы скобок.
  • Множественное выделение — это удобный инструмент, который позволяет быстро менять строки кода на ходу. Изменяйте имена переменных или даже файлов.
  • Наличие мощного Python API в Sublime выделяет текстовый редактор среди конкурентов. Мощный встроенный API позволяет Sublime достигать большей функциональности, позволяя плагинам расширять встроенную функциональность.
  • Кроссплатформенность — Sublime Text доступен на нескольких клиентских компьютерах, включая Windows, Mac и Linux.

Testing

When building a syntax definition, rather than manually checking scopes with the show_scope_name command, you can define a syntax test file that will do the checking for you:

To make one, follow these rules

  1. Ensure the file name starts with syntax_test_.
  2. Ensure the file is saved somewhere within the Packages directory: next to the corresponding .sublime-syntax file is a good choice.
  3. Ensure the first line of the file starts with: . Note that the syntax file can either be a .sublime-syntax or .tmLanguage file.

Once the above conditions are met, running the build command with a syntax test or syntax definition file selected will run all the Syntax Tests, and show the results in an output panel. Next Result (F4) can be used to navigate to the first failing test.

Each test in the syntax test file must first start the comment token (established on the first line, it doesn’t actually have to be a comment according to the syntax), and then either a or token.

The two types of tests are:

Choosing an API

Before we could start on an implementation we of course had to pick an API to use for controlling the GPU. We wanted a shared implementation for all the platforms we support, which immediately ruled out the Direct2D and Metal APIs. For flexibility and performance reasons we also didn’t want to use a higher-level library like Skia, which we already make use of for CPU-based rendering. This left us with only two options: Vulkan and OpenGL.

Vulkan is the successor of OpenGL and comes with many performance advantages at the cost of some complexity. Its design simplifies the GPU drivers leading to more stable operating systems and applications. It would be our API of choice had Apple not decided against supporting it on their platforms. We did evaluate the viability of MoltenVK — a Vulkan implementation built on top of Apple’s Metal API — however it doesn’t support macOS 10.9 nor did it seem stable enough at the time. Unfortunately this didn’t leave us any other choice than to use OpenGL.

OpenGL is 28 years old and currently the only truly cross-platform GPU API. It’s supported by practically every GPU under the sun, but its complexity and multitude of implementations make the drivers more bug-prone and inconsistent. However since we only needed to render simple 2D geometry our hope was that the drivers wouldn’t be much of an issue. Thankfully this also happened to be the API I was already familiar with, so getting reacquaint with its intricacies wasn’t too difficult.

We also had to choose which version of OpenGL to target. We went with the latest version supported by Apple: OpenGL 4.1, as this version is relatively recent but also supported by most hardware.

Build 3006

29 January 2013

  • Added Goto Definition, and Goto Symbol in Project
  • Significantly improved startup time
  • Significantly improved Replace All performance
  • Improved matching algorithm used for Goto Anything and Autocomplete, now accepts transposed characters
  • UI: Enhanced pane management
  • UI: Previewing files from the sidebar creates a preview tab
  • UI: Improved animation in the side bar
  • Projects: Multiple workspaces can be created for a single project
  • Projects: When adding folders to the sidebar, symlinks are not followed by default. This can be changed by enabling follow_symlinks in the project.
  • Build Systems: Added ‘shell_cmd’, which supersedes ‘cmd’, with more intuitive syntax
  • Build Systems: Better PATH handling behavior on OS X when using shell_cmd.
  • Build Systems: ‘Make’ build system has an improved error message regex
  • Build Systems: Syntax file can be specified for the output
  • Build Systems: Word wrap is enabled by default
  • Find in Files: Improved handling of binary files
  • Find in Files: Line numbers are hidden in the output
  • Find: Find in Selection will no longer be automatically selected
  • Find: Removed Reverse option
  • OSX: Improved performance on Retina displays
  • OSX: 10.7 or later is required
  • OSX: 64 bit only
  • OSX: System version of Python is no longer a dependency
  • OSX: Italic fonts are synthesized when not available in the typeface
  • Linux: .deb files are provided
  • Linux: Starting from the command line will daemonize the process by default
  • API: Upgraded from Python 2.6 to Python 3.3
  • API: Plugins run out-of-process
  • API: Plugin API is now threadsafe
  • API: Some API events are now run asynchronously
  • API: View.begin_edit() / View.end_edit() are no longer accessible
  • API: Projects are exposed to the API
  • API: Added Window.settings() and Window.template_settings()
  • API: show_quick_panel accepts an on_highlighted callback

Установка

  1. wget -qO — https://download.sublimetext.com/sublimehq-pub.gpg | sudo apt-key add —
  2. sudo apt-get install apt-transport-https
  3. Вводим команду echo «deb https://download.sublimetext.com/ apt/stable/» | sudo tee /etc/apt/sources.list.d/sublime-text.list для выбора стабильной версии программы, или же «дэв» версии echo «deb https://download.sublimetext.com/ apt/dev/» | sudo tee /etc/apt/sources.list.d/sublime-text.list .  «Дэв» или же версия для разработчиков отличается от обычной (стабильной) версии тем, что в ней тестируются новые функции, но в то же время могут возникнуть системные ошибки
  4. sudo apt-get update && sudo apt-get install sublime-text
Добавить комментарий

Ваш адрес email не будет опубликован. Обязательные поля помечены *

Adblock
detector