or
or
By clicking below, you agree to our terms of service.
New to HackMD? Sign up
Syntax | Example | Reference | |
---|---|---|---|
# Header | Header | 基本排版 | |
- Unordered List |
|
||
1. Ordered List |
|
||
- [ ] Todo List |
|
||
> Blockquote | Blockquote |
||
**Bold font** | Bold font | ||
*Italics font* | Italics font | ||
~~Strikethrough~~ | |||
19^th^ | 19th | ||
H~2~O | H2O | ||
++Inserted text++ | Inserted text | ||
==Marked text== | Marked text | ||
[link text](https:// "title") | Link | ||
 | Image | ||
`Code` | Code |
在筆記中貼入程式碼 | |
```javascript var i = 0; ``` |
|
||
:smile: | ![]() |
Emoji list | |
{%youtube youtube_id %} | Externals | ||
$L^aT_eX$ | LaTeX | ||
:::info This is a alert area. ::: |
This is a alert area. |
On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?
Please give us some advice and help us improve HackMD.
Syncing
xxxxxxxxxx
Nushell core team meeting 2023-12-13
Attendees
Agenda
ulimit
command in nushell? 11246overlay use
semantics to matchuse
(see notes)Discussed Topics
Hotfix time
ulimit
This is handled by builtins in other unix shells.
if we want to be used as a login-shell you can not rely on previously setting this in another shell.
Vote: let's land this as a platform specific command for now
Overlay semantics
Current state:
Proposal (remove
--prefix
, makeoverlay use
accept an import pattern, allowas
foruse
):(It might need some hacking around
overlay use ... as ...
.)use
builtins through modules@bew brought it up in the context of the os specific
ulimit
(after discussion around this PR)
currently we ship modules in the stdlibrary but all builtin commands are in the scope
Suggestion have modules that we add some builtins to
Motivation: More explicit
use windows
in the script telling you that the script depends on windows specific stuffStorm: meshes with cratification if we have modules for commands
Stefan: adding commands behind a module that has to be imported manualy would not break scripts that rely on an external of the same name
Darren: being able to get back a previously aliased built-in would be great (maybe
use
could be a workaround here)Possible direction
move the few platform specific commands to modules, to proof out the technology
then we can proceed with organising moving stuff.
core commands that are keywords/keyword like would be except from that.
Issues