Skip to content
This repository has been archived by the owner on Jan 24, 2021. It is now read-only.

Latest commit

 

History

History
41 lines (22 loc) · 713 Bytes

readme.md

File metadata and controls

41 lines (22 loc) · 713 Bytes

atom-set-text Build Status

A better Atom TextEditor#setText() that preserves cursor/scroll position and selections

Install

$ npm install --save atom-set-text

Usage

/** @babel */
import setText from 'atom-set-text';

setText('new text');

API

setText(text, [editor])

text

Type: string

Text you want to set in the editor.

editor

Default: atom.workspace.getActiveTextEditor()

Editor to set the text in.

License

MIT © Sindre Sorhus