Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dot-atom/init.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
//
// See the Pulsar Launch manual for more information on this file and how to
// customize it.
// https://pulsar-edit.dev/docs/launch-manual/sections/core-hacking/#the-init-file
// https://docs.pulsar-edit.dev/customizing-pulsar/the-init-file/
2 changes: 1 addition & 1 deletion dot-atom/keymap.cson
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
# If you're having trouble with your keybindings not working, try the
# Keybinding Resolver: `Cmd+.` on macOS and `Ctrl+.` on other platforms. See the
# Debugging Guide for more information:
# * https://pulsar-edit.dev/docs/launch-manual/sections/core-hacking/#check-your-keybindings
# * https://docs.pulsar-edit.dev/troubleshooting-pulsar/checking-your-keybindings/
#
# This file uses CoffeeScript Object Notation (CSON).
# If you are unfamiliar with CSON, you can read more about it in the
Expand Down
2 changes: 1 addition & 1 deletion dot-atom/snippets.cson
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@
# This file uses CoffeeScript Object Notation (CSON).
# If you are unfamiliar with CSON, you can read more about it in the
# Pulsar Launch Manual:
# https://pulsar-edit.dev/docs/launch-manual/sections/using-pulsar/#configuring-with-cson
# https://docs.pulsar-edit.dev/customizing-pulsar/configuring-with-cson/
2 changes: 1 addition & 1 deletion src/config-schema.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// This is loaded by atom-environment.coffee. See
// https://atom.io/docs/api/latest/Config for more information about config TODO: Link to Pulsar API site when documented
// https://docs.pulsar-edit.dev/api/pulsar/latest/ for more information about config
// schemas.
const configSchema = {
core: {
Expand Down
10 changes: 5 additions & 5 deletions src/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -487,7 +487,7 @@ class Config {
// * `scope` (optional) {ScopeDescriptor} describing a path from
// the root of the syntax tree to a token. Get one by calling
// {editor.getLastCursor().getScopeDescriptor()}. See {::get} for examples.
// See [the scopes docs](https://pulsar-edit.dev/docs/launch-manual/sections/behind-pulsar#scoped-settings-scopes-and-scope-descriptors)
// See [the scopes docs](https://docs.pulsar-edit.dev/infrastructure/scoped-settings/)
// for more information.
// * `callback` {Function} to call when the value of the key changes.
// * `value` the new value of the key
Expand All @@ -506,7 +506,7 @@ class Config {
scopeDescriptor = options.scope;
} else {
console.error(
'An unsupported form of Config::observe is being used. See https://atom.io/docs/api/latest/Config for details'
'An unsupported form of Config::observe is being used. See https://docs.pulsar-edit.dev/api/pulsar/latest/Config/ for details'
);
return;
}
Expand All @@ -531,7 +531,7 @@ class Config {
// * `scope` (optional) {ScopeDescriptor} describing a path from
// the root of the syntax tree to a token. Get one by calling
// {editor.getLastCursor().getScopeDescriptor()}. See {::get} for examples.
// See [the scopes docs](https://pulsar-edit.dev/docs/launch-manual/sections/behind-pulsar#scoped-settings-scopes-and-scope-descriptors)
// See [the scopes docs](https://docs.pulsar-edit.dev/infrastructure/scoped-settings/)
// for more information.
// * `callback` {Function} to call when the value of the key changes.
// * `event` {Object}
Expand Down Expand Up @@ -613,7 +613,7 @@ class Config {
// * `scope` (optional) {ScopeDescriptor} describing a path from
// the root of the syntax tree to a token. Get one by calling
// {editor.getLastCursor().getScopeDescriptor()}
// See [the scopes docs](https://pulsar-edit.dev/docs/launch-manual/sections/behind-pulsar#scoped-settings-scopes-and-scope-descriptors)
// See [the scopes docs](https://docs.pulsar-edit.dev/infrastructure/scoped-settings/)
// for more information.
//
// Returns the value from Pulsar's default settings, the user's configuration
Expand Down Expand Up @@ -720,7 +720,7 @@ class Config {
// setting to the default value.
// * `options` (optional) {Object}
// * `scopeSelector` (optional) {String}. eg. '.source.ruby'
// See [the scopes docs](https://pulsar-edit.dev/docs/launch-manual/sections/behind-pulsar#scoped-settings-scopes-and-scope-descriptors)
// See [the scopes docs](https://docs.pulsar-edit.dev/infrastructure/scoped-settings/)
// for more information.
// * `source` (optional) {String} The name of a file with which the setting
// is associated. Defaults to the user's config file.
Expand Down
Loading