Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update "Chapter 2: Using Pulsar" documentation #59

Merged
merged 11 commits into from
Nov 11, 2022
1 change: 1 addition & 0 deletions docs/.vuepress/sidebar.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ const sidebar_en = {
collapsible: true,
children: [
'getting-started/',
`using-pulsar/`,
'core-hacking/',
'faq/'
]
Expand Down
24 changes: 24 additions & 0 deletions docs/docs/launch-manual/sections/using-pulsar/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Using Pulsar

::: warning Under Construction
This document is under construction, please check back soon for updates.
Please see [our socials](/docs/launch-manual/sections/faq/#having-trouble) and
feel free to ask for assistance or inquire as to the status of this document.
:::

@include(sections/pulsar-packages.md)
@include(sections/moving-in-pulsar.md)
@include(sections/pulsar-selections.md)
@include(sections/editing-and-deleting-text.md)
@include(sections/find-and-replace.md)
@include(sections/snippets.md)
@include(sections/autocomplete.md)
@include(sections/folding.md)
@include(sections/panes.md)
@include(sections/pending-pane-items.md)
@include(sections/grammar.md)
@include(sections/version-control-in-pulsar.md)
@include(sections/github-package.md)
@include(sections/writing-in-pulsar.md)
@include(sections/basic-customization.md)
@include(sections/summary.md)
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
### Autocomplete

If you're still looking to save some typing time, Pulsar also ships with simple
autocompletion functionality.

The autocomplete system lets you view and insert possible completions in the
editor using <kbd>Tab</kbd> or <kbd>Enter</kbd>.

![Autocomplete menu](@images/atom/autocomplete.png "Autocomplete menu")

By default, the autocomplete system will look through the current open file for
strings that match what you're starting to type.

If you want more options, in the Settings panel for the autocomplete-plus
package you can toggle a setting to make autocomplete-plus look for text in all
your open buffers rather than just the current file.

The Autocomplete functionality is implemented in the
[autocomplete-plus](https://github.com/pulsar-edit/autocomplete-plus) package.
Loading