aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_vfs
diff options
context:
space:
mode:
authorgfreezy <[email protected]>2019-01-02 15:42:38 +0000
committergfreezy <[email protected]>2019-01-02 15:42:38 +0000
commit9672ae001e6be8f4ad3a2fd247999ebb205736ab (patch)
tree3ba089370f0a838df54b82181ccf2fb636f8d780 /crates/ra_vfs
parent29d8bfb9c909847cb37ff6e564ea0e61744277ad (diff)
extend selection inside a string literal should select a word first
Diffstat (limited to 'crates/ra_vfs')
-rw-r--r--crates/ra_vfs/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_vfs/src/lib.rs b/crates/ra_vfs/src/lib.rs
index 757eac95b..5bbc3e993 100644
--- a/crates/ra_vfs/src/lib.rs
+++ b/crates/ra_vfs/src/lib.rs
@@ -11,7 +11,7 @@
11//! to support custom watcher events (related to https://github.com/rust-analyzer/rust-analyzer/issues/131) 11//! to support custom watcher events (related to https://github.com/rust-analyzer/rust-analyzer/issues/131)
12//! 12//!
13//! VFS is based on a concept of roots: a set of directories on the file system 13//! VFS is based on a concept of roots: a set of directories on the file system
14//! whihc are watched for changes. Typically, there will be a root for each 14//! which are watched for changes. Typically, there will be a root for each
15//! Cargo package. 15//! Cargo package.
16mod arena; 16mod arena;
17mod io; 17mod io;