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

Minor doc changes. #16375

Closed
wants to merge 25 commits into from
Closed

Minor doc changes. #16375

wants to merge 25 commits into from

Conversation

bheesham
Copy link
Contributor

@bheesham bheesham commented Aug 9, 2014

No description provided.

@@ -92,3 +92,4 @@ tmp.*.rs
version.md
version.ml
version.texi
*.sublime-*
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is missing the trailing newline.

@lilyball
Copy link
Contributor

lilyball commented Aug 9, 2014

What's the rationale for adding a .gitignore line for Sublime Text? There's no expectation that someone will drop a Sublime Text project file in the root of the repository. Anyone who does want to do that can always add it to .git/info/excludes

@bheesham
Copy link
Contributor Author

bheesham commented Aug 9, 2014

@kballard : Is *.swo not for vim? And dropping the Sublime Text project file in the root is exactly what I did. I've never heard of .git/info/excludes up until now.

And yeah, I just noticed I missed the extra wrapping * around the note.

EDIT: Also, there are entries for .cproject, and .project files in there. I assume those are for other editors as well? I saw Vim swap files being ignored and thought that ignoring editor files was a thing that was going on.

@lilyball
Copy link
Contributor

lilyball commented Aug 9, 2014

@bheesham I use vim and I've never seen a *.swo file. Perhaps you're thinking of *.swp? And there's *~ for Emacs. The difference there is that these files are created by default merely by editing files in those two popular editors, whereas merely editing a file in Sublime Text doesn't need to drop a project file into the repository.

.git/info/excludes has always existed, and is the definitive way of adding untracked exclusions to a given checkout.

@bheesham
Copy link
Contributor Author

bheesham commented Aug 9, 2014

Ah, looks like I've learned something new today then.

Removing it.

@bheesham bheesham changed the title Added Sublime Text project files to .gitignore; minor doc changes. Minor doc changes. Aug 9, 2014
@lilyball
Copy link
Contributor

lilyball commented Aug 9, 2014

Can you squash the commits back down to one commit?

@bheesham
Copy link
Contributor Author

bheesham commented Aug 9, 2014

Done.

@steveklabnik
Copy link
Member

It's actually still three commits, not one.

nham and others added 19 commits August 12, 2014 01:39
This does a few things:

 - remove references to ~[] and the OwnedVector trait, which are both
   obsolete
 - correct the docs to say that this is the slice module, not the vec
   module
 - add a sentence pointing out that vectors are distinct from Vec
 - remove documentation on Vec.

closes #15459
This commit makes the configuration system autodetect a rustc that
is already installed and use that instead of downloading a snapshot.
Signed-off-by: Peter Atashian <retep998@gmail.com>
Made INVALID_HANDLE_VALUE actually a HANDLE.
Removed all useless casts during INVALID_HANDLE_VALUE comparisons.

Signed-off-by: Peter Atashian <retep998@gmail.com>
* move some sidebar contents to a title bar when small
* inline description toggle when small
* make out-of-band and in-band content share space, rather than float and clash
* compress wording of out-of-band content to avoid line-wrap as much as possible
…ccessible names.

This requires avoiding `quote_...!` for constructing the parts of the
__test module, since that stringifies and reinterns the idents, losing
the special gensym'd nature of them. (#15962.)
implementation details.

(Mainly to avoid accessing the secret internal test module symbol name.)
default entrypoint of the --test binary.

This allows one to, e.g., run tests under libgreen by starting it
manually, passing in the test entrypoint.
This allows rustc to be build under msys2's mingw64 gcc
This is useful e.g. for tools need a node-id, such as the flowgraph
pretty printer, since it can avoids the need to first pretty-print the
whole expanded,identified input in order to find out what the node-id
actually is.

It currently only supports path suffixes thst are made up of module
names (e.g. you cannot use the type instantiation form `a::<int>::b`
or `option::Option::unwrap_or` as a path suffix for this tool, though
the tool will produce paths that have non-modulues in the portion of
the path that is not included in the suffix).

(addressed review feedback too)
…crate`.

(Groundwork for pretty-printing only selected items in an input crate.)
pnkfelix and others added 5 commits August 12, 2014 01:40
With this change:

  * `--pretty variant=<node-id>` will print the item associated with
    `<node-id>` (where `<node-id>` is an integer for some node-id in
    the AST, and `variant` means one of {`normal`,`expanded`,...}).

  * `--pretty variant=<path-suffix>` will print all of the items that
    match the `<path-suffix>` (where `<path-suffix>` is a suffix of a
    path, and `variant` again means one of {`normal`,`expanded`,...}).

    Example 1: the suffix `typeck::check::check_struct` matches the
    item with the path `rustc::middle::typeck::check::check_struct`
    when compiling the `rustc` crate.

    Example 2: the suffix `and` matches `core::option::Option::and`
    and `core::result::Result::and` when compiling the `core` crate.

Both of the `--pretty variant=...` modes will include the full path to
the item in a comment that follows the item.

Note that when multiple paths match, then either:

  1. all matching items are printed, in series; this is what happens in
     the usual pretty-print variants, or

  2. the compiler signals an error; this is what happens in flowgraph
     printing.

----

Some drive-by improvements:

Heavily refactored the pretty-printing glue in driver.rs, introducing
a couple local traits to avoid cut-and-pasting very code segments that
differed only in how they accessed the `Session` or the
`ast_map::Map`. (Note the previous code had three similar calls to
`print_crate` which have all been unified in this revision; the
addition of printing individual node-ids exacerbated the situation
beyond tolerance.) We may want to consider promoting some of these
traits, e.g. `SessionCarrier`, for use more generally elsewhere in the
compiler; right now I have to double check how to access the `Session`
depending on what context I am hacking in.

Refactored `PpMode` to make the data directly reflect the fundamental
difference in the categories (in terms of printing source-code with
various annotations, versus printing a control-flow graph).

(also, addressed review feedback.)
@bheesham
Copy link
Contributor Author

Uh ,yeah. I think I messed up my repo.

@bheesham bheesham closed this Aug 12, 2014
bors added a commit that referenced this pull request Aug 14, 2014
  * `rust.md`: changes for consistency

  * `guide-ffi.md`: wrapped inline code

NOTE: This is a duplicate of #16375. I completely messed up that fork, so I made a new fork.
bors added a commit to rust-lang-ci/rust that referenced this pull request Jan 21, 2024
feat: Goto type actions for notable trait hovers

Follow up to rust-lang/rust-analyzer#16374
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.