
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
@aomao/plugin-alignment
Advanced tools
对齐方式:左对齐、居中对齐、右对齐、两端对齐
$ yarn add @aomao/plugin-alignment
添加到引擎
import Engine, { EngineInterface } from '@aomao/engine';
import Alignment from '@aomao/plugin-alignment';
new Engine(...,{ plugins:[Alignment] })
//快捷键
hotkey?: {
left?: string;//左对齐,默认 mod+shift+l
center?: string;//居中对齐,默认 mod+shift+c
right?: string;//右对齐,默认 mod+shift+r
justify?: string;//两端对齐,默认 mod+shift+j
};
//使用配置
new Engine(...,{
config:{
"alignment":{
//修改 左对齐 快捷键
hotkey:{
left:"快捷键"
}
}
}
})
对齐插件可选参数,left | center | right | justify,分别表示 左对齐、居中对齐、右对齐、两端对齐
//使用 command 执行插件、并传入所需参数
engine.command.execute('alignment', 'left' | 'center' | 'right' | 'justify');
//使用 command 执行查询当前状态,返回 string | undefined,光标所在处节点对齐样式 "left" | "center" | "right" | "justify"
engine.command.queryState('alignment');
FAQs
The npm package @aomao/plugin-alignment receives a total of 67 weekly downloads. As such, @aomao/plugin-alignment popularity was classified as not popular.
We found that @aomao/plugin-alignment demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.