- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个想法,编写一个可视化工具,在您键入时显示 PowerShell 行的 AST。但要做到这一点,第一步是在提交之前(在按下 ENTER 之前)获取当前行的文本,但我找不到 API 函数或 Hook 来执行此操作。一个存在吗?
我在新的 Windows 终端上使用 PowerShell Core 7.1.0。
预测源
似乎 PSReadLine 的 PredictiveSource 选项可以用于此目的,前提是它可以在每个字母条目上调用,而不仅仅是在 TAB 上,但我在挖掘后找不到任何关于第 3 方插件类型契约(Contract)的信息通过文档和 C# 代码...
设置 PSReadLineKeyHandler
正如传说中的@mklement0 所建议的那样,也许 Set-PSReadLineKeyHandler
可用于。它似乎是为键绑定(bind)设计的,但我仍在思考如何将它用于此目的。
最佳答案
虽然没有响应每个按键的官方机制,但您可以通过设置 来实现自己的机制。通过 Set-PSReadLineKeyHandler
为每个可打印字符和选择的几个控制字符的键处理程序小命令 .
在键处理程序中,您可以在输入行下方显示有关输入缓冲区当前状态的信息。
tl;博士:
$metaInfo = ...
行以确定要在其下方实时显示有关正在编辑的命令行的哪些信息。System.ConsoleKeyInfo
的格式化表示形式打印有关刚刚按下的键的信息。实例。$metaInfo =
开头的行在下面的代码中自定义要显示的内容。$ast = $tokens = $errors = $cursor = $null
[Microsoft.PowerShell.PSConsoleReadLine]::GetBufferState([ref] $ast, [ref] $tokens, [ref] $errors, [ref] $cursor)
conhost.exe
)中效果最佳; 限制 :PSReadLine
模块对当前的终端线是什么感到困惑,因此自定义信息的多次打印操作最终可能会堆叠在一起,而不是在原地相互覆盖。# The printable characters to respond to.
$printableChars = [char[]] (0x20..0x7e + 0xa0..0xff)
# The control characters to respond to.
$controlChars = 'Enter', 'Escape', 'Backspace', 'Delete'
# Set up the key handler for all specified characters.
$printableChars + $controlChars | ForEach-Object {
Set-PSReadLineKeyHandler $_ {
param($key, $arg)
$line = $cursor = $null
[Microsoft.PowerShell.PSConsoleReadLine]::GetBufferState([ref] $null, [ref] $cursor)
# Handle the key at hand.
switch ($key.Key) {
'Backspace' { [Microsoft.PowerShell.PSConsoleReadLine]::BackwardDeleteChar(); break }
'Delete' { try { [Microsoft.PowerShell.PSConsoleReadLine]::Delete($cursor, 1) } catch { }; break } # ignore error with empty buffer
'Escape' {
[Microsoft.PowerShell.PSConsoleReadLine]::GetBufferState([ref] $line, [ref] $null)
[Microsoft.PowerShell.PSConsoleReadLine]::Delete($0, $line.Length)
break
}
'Enter' {
# Clear any previous meta-information output, so that it doesn't linger and get mixed with command output.
try {
# !! On conhost.exe (regular console) windows on Windows, [Console]::CursorTop and [Console]::WindowTop are *relative to the scrollback buffer*.
# !! In Windows Terminal and on Unix, [Console]::WindowTop is always 0, and [Console]::CursorTop is relative to the screen height - even in the presence of a scrollback buffer.
Write-Host -NoNewLine (, (' ' * [Console]::WindowWidth) * ([Console]::WindowTop + [Console]::WindowHeight - [Console]::CursorTop - 1) -join "`n")
}
catch { Write-Warning "`nClearing the screen below the current line failed: $_" } # This shouldn't happen.
# !! Workaround for a display bug: If the cursor isn't at the very end of the line, everything to the
# !! right is inexplicably *erased* on submission, even though the submission itself still works fine.
# !! We detect that case and simply fill the entire buffer again, which leaves it drawn correctly on submission.
# !! (Note that [Microsoft.PowerShell.PSConsoleReadLine]::SetCursorPosition($line.Length) does *not* work.)
[Microsoft.PowerShell.PSConsoleReadLine]::GetBufferState([ref] $line, [ref] $cursor)
if ($cursor -ne $line.length) {
[Microsoft.PowerShell.PSConsoleReadLine]::Delete(0, $line.Length)
[Microsoft.PowerShell.PSConsoleReadLine]::Insert($line)
}
# Submit the command.
[Microsoft.PowerShell.PSConsoleReadLine]::AcceptLine()
return # We're done.
}
Default { [Microsoft.PowerShell.PSConsoleReadLine]::Insert($key.KeyChar) }
}
# Get the updated buffer content and cursor position.
[Microsoft.PowerShell.PSConsoleReadLine]::GetBufferState([ref]$line, [ref] $cursor)
# Note: To get the *AST* (too), use the following:
# $ast = $tokens = $errors = $cursor = $null
# [Microsoft.PowerShell.PSConsoleReadLine]::GetBufferState([ref] $ast, [ref] $tokens, [ref] $errors, [ref] $cursor)
# Determine the meta-informaton to print:
$metaInfo = $key | Out-String
if ($env:OS -ne 'Windows_NT' -or $env:WT_SESSION) {
# Workaround for all terminals except conhost.exe
# See comments at the top of the answer.
if ([Console]::CursorTop + $metaInfo.Count -gt [Console]::WindowTop + [Console]::WindowHeight) {
[Microsoft.PowerShell.PSConsoleReadLine]::ClearScreen()
}
}
# Print the desired information below the line being edited.
# Note:
# * The .PadRight() calls ensure that all lines are fully filled (padded with spaces),
# in order to erase potential remnants from previously displayed information.
# * This is NOT sufficient to deal with *varying line counts* being displayed, however.
Write-Host # blank line
Write-Host -NoNewLine -ForegroundColor Yellow ($metaInfo -split '\r?\n' | ForEach-Object PadRight ([Console]::WindowWidth-1), ' ')
# Set the new cursor position.
[Microsoft.PowerShell.PSConsoleReadLine]::SetCursorPosition($cursor)
}
}
一个
截图示例关键处理程序的作用:
0x80-0x9f
范围被所谓的 C1 控制字符占据,而 Windows-1252 包含此范围内的可打印字符(除了代码点
0x81
、
0x8d
、
0x8f
、
0x90
和
0x9d
,未定义)。
关于powershell - 在按下 ENTER 之前获取 powershell 当前行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67136144/
我试图通过这段代码读取未知数量的整数: while (1) { int c = getchar (); if (c == EOF) break;
我正试图找到一个类似于谷歌分析日期选择器的日期选择器: 知道 jQuery 是否提供了类似的东西吗? 最佳答案 这个 Twitter Bootstrap 风格的日期范围选择器非常接近。 https:/
我正在使用 javascript。如何获取当前 URL 的路径并将其分配给我的代码?这是我的代码: $(document).ready(function() { $(".share").hides
如何获得今天的Julian day number (JDN)相等的?或任何日期? 我看了又看,但只发现了一些产生“year-dayOfYear”的函数,而不是:2457854。 最佳答案 在 bash
我有相当简单的 UDP 服务器写在 c 上。 有时我需要知道在套接字中排队的所有 udp 数据包(字节)的当前长度。 据我了解,getsockopt 没有得到这样的信息。 欢迎使用 Linux 和 F
我一直在寻找几个小时来找到一个可以在图像中添加诸如“填充:5px”之类的东西的插件。每个人都通过纯 html 做到这一点吗?我们的客户需要一种方法来简单地使用按钮或右键单击上下文菜单来添加它。有什么建
是否有可能获得当前正在执行的 TCL 脚本的完整路径? 在 PHP 中,它将是:__FILE__ 最佳答案 根据“当前正在执行的 TCL 脚本”的含义,您实际上可能会寻找 info script ,甚
我最近从直接使用 ISession 转向了包装的 ISession,即工作单元类型模式。 我曾经使用 SQL Lite(内存中)对此进行测试。我有一个简单的帮助器类,它配置我的 SessionFact
我按照步骤操作 here在 WebStorm 中配置代码完成和其他内容,但我仍然收到以下语法错误。 我该如何解决这个问题? 最佳答案 通过相应地将“JavaScript 语言版本”(Settings/
我可以为我团队的 TFS 当前 Sprint 任务板添加书签吗?我们有两周的冲刺,因此 URL 每两周更改一次。 默认 URL 的形式为: http://[Server]/tfs/[Project]/
是否有 Subversion 命令可以显示当前版本号? 在svn checkout之后,我想启动一个脚本并需要变量中的修订号。如果有像 svn info get_revision_number 这样的
我正在编写表单的一个组件 首次安装组件时,sources={{}} ,一本空字典。由于该组件包装了现有的 Javascript 库,因此我正在实现一个自定义比较函数。为了让这个 diffing 函数
无论系统时间设置为多少以及机器所在的时区,我都需要正确的 UTC 时间。 (即使我必须打电话到互联网才能同步......) 是否有一些库或其他方法可以优雅地做到这一点? 最佳答案 如果您想获得准确可靠
我一边编码,一边拿出一些我和 friend 建立的旧网站来重新开始工作。我已经有一段时间没有做过任何 AJAX 了,当我试图找出我的代码失败的地方时,我发现没有显示很多资源。我猜这是因为我使用的是旧方
由于对性能的巨大影响,我从不怀疑我现在的桌面CPU是否有分支预测。当然可以。但各种 ARM 产品又如何呢? iPhone或Android手机有分支预测吗?较旧的任天堂 DS?基于 PowerPC 的
我有一个具有以下有效负载的 JWT: { "id": "394a71988caa6cc30601e43f5b6569d52cd7f6df", "jti": "394a71988caa6cc30
从其他一些帖子中,我能够通过以下方式获取当前 URI: 但是以下方法不起作用: 我很好奇为什么上面的方法不起作用,以及如何将当前 URI 分配给字符串。 最佳答案 每the javadocs ,g
我在表格 View 中有几个单元格。现在在任何给定的时间点,我想计算 View 中单元格的当前高度,即如果它是 View 的 3/4,它应该返回 (cellheight)*3/4 高度。 我通过以下方
这是网站的身份验证脚本。这安全吗?是最近的节目吗?它已经过时了吗?是否有“更好更安全的方法”我很新,但我没有看到太多地方使用 header 授权。 如有任何帮助,我们将不胜感激!这是我制作的第一个登录
我已经在其他 stackoverflow 线程上检查过这个错误,但在我的代码中没有发现任何错误。也许我累了,但我觉得还好。 网站.urls.py: from django.conf.urls impo
我是一名优秀的程序员,十分优秀!