You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by ad...@apache.org on 2016/09/08 00:53:23 UTC

[1/3] incubator-mynewt-site git commit: MYNEWT-126 docs for autocomplete

Repository: incubator-mynewt-site
Updated Branches:
  refs/heads/develop 717df57a9 -> 09fe1db4b


MYNEWT-126
docs for autocomplete


Project: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/commit/a67738a4
Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/tree/a67738a4
Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/diff/a67738a4

Branch: refs/heads/develop
Commit: a67738a41275476ef2e50e287a7ecf3358b38e50
Parents: b108a56
Author: Paul Dietrich <pa...@yahoo.com>
Authored: Wed Sep 7 14:54:59 2016 -0700
Committer: Paul Dietrich <pa...@yahoo.com>
Committed: Wed Sep 7 14:56:21 2016 -0700

----------------------------------------------------------------------
 docs/newt/newt_intro.md | 11 +++++++++++
 1 file changed, 11 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/a67738a4/docs/newt/newt_intro.md
----------------------------------------------------------------------
diff --git a/docs/newt/newt_intro.md b/docs/newt/newt_intro.md
index 89a7922..ffb0c8d 100644
--- a/docs/newt/newt_intro.md
+++ b/docs/newt/newt_intro.md
@@ -187,7 +187,18 @@ pkg.deps:
 <br>
 
 
+### Autocompletion in Bash
 
+Newt has the ability to autocomplete within `bash`.  The following instructsion allow MAC users to enable autocomplete within `bash`.
+
+1. Install the autocomplete tools for bash via `brew install bash-completion`
+2. Tell your shell to use newt for autocompletion of newt via `complete -C "newt complete" newt`.  You can add this to your .bashrc or other init file to have this automatically set for all bash shells.
+
+Notes:
+
+1. Autocomplete will give you flag hints, but only if you type a '-'.  
+2. Autocomplete will not give you completion hints for the flag arguments (those optional things after the flag like `-l DEBUG`)
+3. Autocomplete usese newt to parse the project to find targets and libs.
 
 
 


[3/3] incubator-mynewt-site git commit: fixed typos. This closes #114

Posted by ad...@apache.org.
fixed typos. This closes #114


Project: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/commit/09fe1db4
Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/tree/09fe1db4
Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/diff/09fe1db4

Branch: refs/heads/develop
Commit: 09fe1db4b879a2b13c4284b090c6fdb95d8e9d53
Parents: 1f1e4dc
Author: aditihilbert <ad...@runtime.io>
Authored: Wed Sep 7 17:53:09 2016 -0700
Committer: aditihilbert <ad...@runtime.io>
Committed: Wed Sep 7 17:53:09 2016 -0700

----------------------------------------------------------------------
 docs/about.md           | 1 +
 docs/newt/newt_intro.md | 6 +++---
 2 files changed, 4 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/09fe1db4/docs/about.md
----------------------------------------------------------------------
diff --git a/docs/about.md b/docs/about.md
index a842db4..a7a9fd0 100644
--- a/docs/about.md
+++ b/docs/about.md
@@ -7,6 +7,7 @@ Some upcoming features:
 * HAL redesign to abstract across a diverse set of chip peripherals ([View discussion thread](http://mail-archives.apache.org/mod_mbox/incubator-mynewt-dev/201606.mbox/%3C06CB0682-8F67-4C3F-93E4-6A20444487A1%40apache.org%3E))
 * HAL for SPI access (master and slave)
 * Ability for drivers to turn on/off low power settings automatically
+* Support for Wi-Fi controllers via a socket interface
 
 
 <font color="#F2853F"> The detailed roadmap is tracked on [JIRA for Mynewt](https://issues.apache.org/jira/browse/MYNEWT/?selectedTab=com.atlassian.jira.jira-projects-plugin:roadmap-panel). </font>

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/09fe1db4/docs/newt/newt_intro.md
----------------------------------------------------------------------
diff --git a/docs/newt/newt_intro.md b/docs/newt/newt_intro.md
index ffb0c8d..f736b09 100644
--- a/docs/newt/newt_intro.md
+++ b/docs/newt/newt_intro.md
@@ -189,16 +189,16 @@ pkg.deps:
 
 ### Autocompletion in Bash
 
-Newt has the ability to autocomplete within `bash`.  The following instructsion allow MAC users to enable autocomplete within `bash`.
+Newt has the ability to autocomplete within `bash`.  The following instructions allow MAC users to enable autocomplete within `bash`.
 
 1. Install the autocomplete tools for bash via `brew install bash-completion`
-2. Tell your shell to use newt for autocompletion of newt via `complete -C "newt complete" newt`.  You can add this to your .bashrc or other init file to have this automatically set for all bash shells.
+2. Tell your shell to use newt for autocompletion of newt via `complete -C "newt complete" newt`.  You can add this to your .bashrc or other init file to have it automatically set for all bash shells.
 
 Notes:
 
 1. Autocomplete will give you flag hints, but only if you type a '-'.  
 2. Autocomplete will not give you completion hints for the flag arguments (those optional things after the flag like `-l DEBUG`)
-3. Autocomplete usese newt to parse the project to find targets and libs.
+3. Autocomplete uses newt to parse the project to find targets and libs.
 
 
 


[2/3] incubator-mynewt-site git commit: Merge branch 'MYNEWT-126' of https://github.com/paulfdietrich/incubator-mynewt-site into develop

Posted by ad...@apache.org.
Merge branch 'MYNEWT-126' of https://github.com/paulfdietrich/incubator-mynewt-site into develop


Project: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/commit/1f1e4dce
Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/tree/1f1e4dce
Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/diff/1f1e4dce

Branch: refs/heads/develop
Commit: 1f1e4dcee2b41cb2c9656eee7f9607ef63f9c1fe
Parents: 717df57 a67738a
Author: aditihilbert <ad...@runtime.io>
Authored: Wed Sep 7 17:30:00 2016 -0700
Committer: aditihilbert <ad...@runtime.io>
Committed: Wed Sep 7 17:30:00 2016 -0700

----------------------------------------------------------------------
 docs/newt/newt_intro.md | 11 +++++++++++
 1 file changed, 11 insertions(+)
----------------------------------------------------------------------