mirror of
https://github.com/pulsar-edit/pulsar.git
synced 2025-01-06 06:28:33 +03:00
Fixed typos
This commit is contained in:
parent
f0bd3b1c20
commit
7070ed8ae4
@ -20,7 +20,7 @@ apm help init
|
|||||||
|
|
||||||
You should see a message print out with details about the `apm init` command.
|
You should see a message print out with details about the `apm init` command.
|
||||||
|
|
||||||
If you do not, launch Atom and run the _Atom > Install Shell Commmands_ menu
|
If you do not, launch Atom and run the _Atom > Install Shell Commands_ menu
|
||||||
to install the `apm` and `atom` commands.
|
to install the `apm` and `atom` commands.
|
||||||
|
|
||||||
### Convert the Package
|
### Convert the Package
|
||||||
|
@ -25,7 +25,7 @@ apm help init
|
|||||||
|
|
||||||
You should see a message print out with details about the `apm init` command.
|
You should see a message print out with details about the `apm init` command.
|
||||||
|
|
||||||
If you do not, launch Atom and run the _Atom > Install Shell Commmands_ menu
|
If you do not, launch Atom and run the _Atom > Install Shell Commands_ menu
|
||||||
to install the `apm` and `atom` commands.
|
to install the `apm` and `atom` commands.
|
||||||
|
|
||||||
You can now run `apm help init` to see all the options for initializing new
|
You can now run `apm help init` to see all the options for initializing new
|
||||||
|
@ -34,7 +34,7 @@ apm help install
|
|||||||
|
|
||||||
You should see a message print out with details about the `apm install` command.
|
You should see a message print out with details about the `apm install` command.
|
||||||
|
|
||||||
If you do not, launch Atom and run the _Atom > Install Shell Commmands_ menu
|
If you do not, launch Atom and run the _Atom > Install Shell Commands_ menu
|
||||||
to install the `apm` and `atom` commands.
|
to install the `apm` and `atom` commands.
|
||||||
|
|
||||||
You can also install packages by using the `apm install` command:
|
You can also install packages by using the `apm install` command:
|
||||||
|
@ -24,7 +24,7 @@ apm help publish
|
|||||||
|
|
||||||
You should see a message print out with details about the `apm publish` command.
|
You should see a message print out with details about the `apm publish` command.
|
||||||
|
|
||||||
If you do not, launch Atom and run the _Atom > Install Shell Commmands_ menu
|
If you do not, launch Atom and run the _Atom > Install Shell Commands_ menu
|
||||||
to install the `apm` and `atom` commands.
|
to install the `apm` and `atom` commands.
|
||||||
|
|
||||||
### Prepare Your Package
|
### Prepare Your Package
|
||||||
@ -80,7 +80,7 @@ digit of the version before publishing so the published version will be `0.1.0`
|
|||||||
and the Git tag created will be `v0.1.0`.
|
and the Git tag created will be `v0.1.0`.
|
||||||
|
|
||||||
In the future you can run `apm publish major` to publish the `1.0.0` version but
|
In the future you can run `apm publish major` to publish the `1.0.0` version but
|
||||||
since this was the first version being published it is a good idead to start
|
since this was the first version being published it is a good idea to start
|
||||||
with a minor release.
|
with a minor release.
|
||||||
|
|
||||||
### Further Reading
|
### Further Reading
|
||||||
|
@ -12,7 +12,7 @@ ChildProcess = require 'child_process'
|
|||||||
# args = ['-ef']
|
# args = ['-ef']
|
||||||
# stdout = (output) -> console.log(output)
|
# stdout = (output) -> console.log(output)
|
||||||
# exit = (code) -> console.log("ps -ef exited with #{code}")
|
# exit = (code) -> console.log("ps -ef exited with #{code}")
|
||||||
# process = new BufferredProcess({command, args, stdout, exit})
|
# process = new BufferedProcess({command, args, stdout, exit})
|
||||||
# ```
|
# ```
|
||||||
module.exports =
|
module.exports =
|
||||||
class BufferedProcess
|
class BufferedProcess
|
||||||
|
@ -465,7 +465,7 @@ class Cursor extends Model
|
|||||||
getCurrentParagraphBufferRange: ->
|
getCurrentParagraphBufferRange: ->
|
||||||
@editor.languageMode.rowRangeForParagraphAtBufferRow(@getBufferRow())
|
@editor.languageMode.rowRangeForParagraphAtBufferRow(@getBufferRow())
|
||||||
|
|
||||||
# Public: Returns the characters preceeding the cursor in the current word.
|
# Public: Returns the characters preceding the cursor in the current word.
|
||||||
getCurrentWordPrefix: ->
|
getCurrentWordPrefix: ->
|
||||||
@editor.getTextInBufferRange([@getBeginningOfCurrentWordBufferPosition(), @getBufferPosition()])
|
@editor.getTextInBufferRange([@getBeginningOfCurrentWordBufferPosition(), @getBufferPosition()])
|
||||||
|
|
||||||
|
@ -264,7 +264,7 @@ class Editor extends Model
|
|||||||
else
|
else
|
||||||
'untitled'
|
'untitled'
|
||||||
|
|
||||||
# Controls visiblity based on the given {Boolean}.
|
# Controls visibility based on the given {Boolean}.
|
||||||
setVisible: (visible) -> @displayBuffer.setVisible(visible)
|
setVisible: (visible) -> @displayBuffer.setVisible(visible)
|
||||||
|
|
||||||
# Set the number of characters that can be displayed horizontally in the
|
# Set the number of characters that can be displayed horizontally in the
|
||||||
@ -275,7 +275,7 @@ class Editor extends Model
|
|||||||
setEditorWidthInChars: (editorWidthInChars) ->
|
setEditorWidthInChars: (editorWidthInChars) ->
|
||||||
@displayBuffer.setEditorWidthInChars(editorWidthInChars)
|
@displayBuffer.setEditorWidthInChars(editorWidthInChars)
|
||||||
|
|
||||||
# Public: Sets the column at which columsn will soft wrap
|
# Public: Sets the column at which column will soft wrap
|
||||||
getSoftWrapColumn: -> @displayBuffer.getSoftWrapColumn()
|
getSoftWrapColumn: -> @displayBuffer.getSoftWrapColumn()
|
||||||
|
|
||||||
# Public: Returns a {Boolean} indicating whether softTabs are enabled for this
|
# Public: Returns a {Boolean} indicating whether softTabs are enabled for this
|
||||||
@ -564,7 +564,7 @@ class Editor extends Model
|
|||||||
bufferRowForScreenRow: (row) -> @displayBuffer.bufferRowForScreenRow(row)
|
bufferRowForScreenRow: (row) -> @displayBuffer.bufferRowForScreenRow(row)
|
||||||
|
|
||||||
# Public: Get the syntactic scopes for the most the given position in buffer
|
# Public: Get the syntactic scopes for the most the given position in buffer
|
||||||
# coorditanates.
|
# coordinates.
|
||||||
#
|
#
|
||||||
# For example, if called with a position inside the parameter list of an
|
# For example, if called with a position inside the parameter list of an
|
||||||
# anonymous CoffeeScript function, the method returns the following array:
|
# anonymous CoffeeScript function, the method returns the following array:
|
||||||
@ -1269,7 +1269,7 @@ class Editor extends Model
|
|||||||
# Public: Determine if a given range in buffer coordinates intersects a
|
# Public: Determine if a given range in buffer coordinates intersects a
|
||||||
# selection.
|
# selection.
|
||||||
#
|
#
|
||||||
# bufferRange - A {Range} or range-comptatible {Array}.
|
# bufferRange - A {Range} or range-compatible {Array}.
|
||||||
#
|
#
|
||||||
# Returns a {Boolean}.
|
# Returns a {Boolean}.
|
||||||
selectionIntersectsBufferRange: (bufferRange) ->
|
selectionIntersectsBufferRange: (bufferRange) ->
|
||||||
@ -1543,28 +1543,28 @@ class Editor extends Model
|
|||||||
# cursor is already on the first character of the line, move it to the
|
# cursor is already on the first character of the line, move it to the
|
||||||
# beginning of the line.
|
# beginning of the line.
|
||||||
#
|
#
|
||||||
# This method may merge selections that end up intesecting.
|
# This method may merge selections that end up intersecting.
|
||||||
selectToFirstCharacterOfLine: ->
|
selectToFirstCharacterOfLine: ->
|
||||||
@expandSelectionsBackward (selection) => selection.selectToFirstCharacterOfLine()
|
@expandSelectionsBackward (selection) => selection.selectToFirstCharacterOfLine()
|
||||||
|
|
||||||
# Public: Move the cursor of each selection to the end of its line while
|
# Public: Move the cursor of each selection to the end of its line while
|
||||||
# preserving the selection's tail position.
|
# preserving the selection's tail position.
|
||||||
#
|
#
|
||||||
# This method may merge selections that end up intesecting.
|
# This method may merge selections that end up intersecting.
|
||||||
selectToEndOfLine: ->
|
selectToEndOfLine: ->
|
||||||
@expandSelectionsForward (selection) => selection.selectToEndOfLine()
|
@expandSelectionsForward (selection) => selection.selectToEndOfLine()
|
||||||
|
|
||||||
# Public: For each selection, move its cursor to the preceding word boundary
|
# Public: For each selection, move its cursor to the preceding word boundary
|
||||||
# while maintaining the selection's tail position.
|
# while maintaining the selection's tail position.
|
||||||
#
|
#
|
||||||
# This method may merge selections that end up intesecting.
|
# This method may merge selections that end up intersecting.
|
||||||
selectToPreviousWordBoundary: ->
|
selectToPreviousWordBoundary: ->
|
||||||
@expandSelectionsBackward (selection) => selection.selectToPreviousWordBoundary()
|
@expandSelectionsBackward (selection) => selection.selectToPreviousWordBoundary()
|
||||||
|
|
||||||
# Public: For each selection, move its cursor to the next word boundary while
|
# Public: For each selection, move its cursor to the next word boundary while
|
||||||
# maintaining the selection's tail position.
|
# maintaining the selection's tail position.
|
||||||
#
|
#
|
||||||
# This method may merge selections that end up intesecting.
|
# This method may merge selections that end up intersecting.
|
||||||
selectToNextWordBoundary: ->
|
selectToNextWordBoundary: ->
|
||||||
@expandSelectionsForward (selection) => selection.selectToNextWordBoundary()
|
@expandSelectionsForward (selection) => selection.selectToNextWordBoundary()
|
||||||
|
|
||||||
@ -1574,7 +1574,7 @@ class Editor extends Model
|
|||||||
selectLine: ->
|
selectLine: ->
|
||||||
@expandSelectionsForward (selection) => selection.selectLine()
|
@expandSelectionsForward (selection) => selection.selectLine()
|
||||||
|
|
||||||
# Public: Add a similarly-shaped selection to the next elibible line below
|
# Public: Add a similarly-shaped selection to the next eligible line below
|
||||||
# each selection.
|
# each selection.
|
||||||
#
|
#
|
||||||
# Operates on all selections. If the selection is empty, adds an empty
|
# Operates on all selections. If the selection is empty, adds an empty
|
||||||
@ -1585,7 +1585,7 @@ class Editor extends Model
|
|||||||
addSelectionBelow: ->
|
addSelectionBelow: ->
|
||||||
@expandSelectionsForward (selection) => selection.addSelectionBelow()
|
@expandSelectionsForward (selection) => selection.addSelectionBelow()
|
||||||
|
|
||||||
# Public: Add a similarly-shaped selection to the next elibible line above
|
# Public: Add a similarly-shaped selection to the next eligible line above
|
||||||
# each selection.
|
# each selection.
|
||||||
#
|
#
|
||||||
# Operates on all selections. If the selection is empty, adds an empty
|
# Operates on all selections. If the selection is empty, adds an empty
|
||||||
|
@ -13,7 +13,7 @@ Task = require './task'
|
|||||||
# `atom.project` global and calling `getRepo()`. Note that this will only be
|
# `atom.project` global and calling `getRepo()`. Note that this will only be
|
||||||
# available when the project is backed by a Git repository.
|
# available when the project is backed by a Git repository.
|
||||||
#
|
#
|
||||||
# This class handles submodules automically by taking a `path` argument to many
|
# This class handles submodules automatically by taking a `path` argument to many
|
||||||
# of the methods. This `path` argument will determine which underlying
|
# of the methods. This `path` argument will determine which underlying
|
||||||
# repository is used.
|
# repository is used.
|
||||||
#
|
#
|
||||||
|
@ -10,7 +10,7 @@ Pane = require './pane'
|
|||||||
# Items can be almost anything however most commonly they're {EditorView}s.
|
# Items can be almost anything however most commonly they're {EditorView}s.
|
||||||
#
|
#
|
||||||
# Most packages won't need to use this class, unless you're interested in
|
# Most packages won't need to use this class, unless you're interested in
|
||||||
# building a package that deals with switching between panes or tiems.
|
# building a package that deals with switching between panes or items.
|
||||||
module.exports =
|
module.exports =
|
||||||
class PaneView extends View
|
class PaneView extends View
|
||||||
Delegator.includeInto(this)
|
Delegator.includeInto(this)
|
||||||
|
@ -24,9 +24,9 @@ Editor = require './editor'
|
|||||||
# with the model object when possible, but it won't always be possible with the
|
# with the model object when possible, but it won't always be possible with the
|
||||||
# current API.
|
# current API.
|
||||||
#
|
#
|
||||||
# ## Adding Perimiter Panels
|
# ## Adding Perimeter Panels
|
||||||
#
|
#
|
||||||
# Use the following methods if possible to attach panels to the perimiter of the
|
# Use the following methods if possible to attach panels to the perimeter of the
|
||||||
# workspace rather than manipulating the DOM directly to better insulate you to
|
# workspace rather than manipulating the DOM directly to better insulate you to
|
||||||
# changes in the workspace markup:
|
# changes in the workspace markup:
|
||||||
#
|
#
|
||||||
|
Loading…
Reference in New Issue
Block a user