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 2024-05-29
Attendees
Agenda
path type
changes broke zoxide. A PR has already been landed on the zoxide site to fix it.OSC 9;9
bug noticable with Windows Terminal, osc9_9 enabled and doing "Duplicate Tab"~/some/path/exe
can't be executed any longer. I got it to work with^("~/.cargo/bin/eza" | path expand)
but that's kind of a pain.which
on Windows?Discussed Topics
Release topics
path type
- no biggy, not going to change it right nowocs9;9
- not big enough to force a patch release~/some/path/exe
should be executable - we need to investigate and do a patch release^"~/some_exe"
will expand~
and run the expanded exe^"~/some_exe"
will not expand and runs exactly~/some_exe
~
^("~/some_exe" | path expand)
Span ID Refactor
Start on the parser/AST side -> introduce the SpanID
Then whenever
Expression
gets used also use it to perform a lookupAt some point there will be some duplication.
Step by step migration moving over several types (with id, just id, bare span)
Devyn: churn with plugins, how can we ensure to minimize that: avoid renamings in public API as long as possible. So rather than renaming to
SpanWithId
, just add theid
toSpan
(but also addActualSpan
as planned)12953 (set_current_dir)
There's no need to revert the revert because YizhePKU added it in 12953. reedline needs to be updated before we land 12953. Jakub to respond in PR.
which
on WindowsWas actually an issue with
nur
, not Nushellfree topic choice
stream joining
Devyn wants a command that joins a stream with another stream coming from a closure (add to
append
andprepend
)"You only see streaming when nothing is happening and only then you see something so you see it's not streaming"
Design dilemma
How invisible can streams be.
"It just works" vs good introspection into the performance characteristics
Issues